This commit is contained in:
commit
30ce0dafc2
195 changed files with 8902 additions and 0 deletions
14
services/postgresql/options.nix
Normal file
14
services/postgresql/options.nix
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
{ lib, ... }:
|
||||
with lib;
|
||||
{
|
||||
options.machine.postgresql = {
|
||||
enable = mkEnableOption "Postgresql";
|
||||
port = mkOption {
|
||||
type = types.port;
|
||||
default = 5432;
|
||||
description = ''
|
||||
The port on which PostgreSQL listens.
|
||||
'';
|
||||
};
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue