diff options
| -rw-r--r-- | nixos/general.nix | 5 | ||||
| -rw-r--r-- | nixos/pc/configuration.nix | 4 |
2 files changed, 4 insertions, 5 deletions
diff --git a/nixos/general.nix b/nixos/general.nix index 84342a0..142c53b 100644 --- a/nixos/general.nix +++ b/nixos/general.nix @@ -52,7 +52,10 @@ }; networking.nftables.enable = true; - # networking.firewall.enable = false; + + services.postgresql = { + enable = true; + }; boot.loader = { systemd-boot.enable = true; diff --git a/nixos/pc/configuration.nix b/nixos/pc/configuration.nix index e4cb669..76a4a27 100644 --- a/nixos/pc/configuration.nix +++ b/nixos/pc/configuration.nix @@ -21,10 +21,6 @@ displayManager.startx.enable = true; }; - services.postgresql = { - enable = true; - }; - services.openssh.enable = true; security.polkit = { enable = true; |
