Move colors and machinevars into modules
This commit is contained in:
17
hosts/tsuki/services/postgres.nix
Normal file
17
hosts/tsuki/services/postgres.nix
Normal file
@@ -0,0 +1,17 @@
|
||||
{ config, pkgs, lib, secrets, ... }: {
|
||||
|
||||
services.postgresql = {
|
||||
enable = true;
|
||||
# port = secrets.ports.postgres
|
||||
# dataDir =
|
||||
# settings = {};
|
||||
};
|
||||
|
||||
services.pgadmin = {
|
||||
enable = true;
|
||||
openFirewall = true;
|
||||
# port = secrets.ports.pgadmin
|
||||
# settings = {
|
||||
# };
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user