diff options
-rw-r--r-- | configuration.nix | 3 | ||||
-rw-r--r-- | stallo-configuration.nix | 3 |
2 files changed, 3 insertions, 3 deletions
diff --git a/configuration.nix b/configuration.nix index 4fd9c71d2635..44b3040d8b52 100644 --- a/configuration.nix +++ b/configuration.nix @@ -42,6 +42,9 @@ ssh.startAgent = true; }; + # Enable PostgreSQL for development + services.postgresql.enable = true; + # Configure user account users.defaultUserShell = pkgs.fish; users.extraUsers.vincent = { diff --git a/stallo-configuration.nix b/stallo-configuration.nix index c3e73d41f43b..b58497f9e4b5 100644 --- a/stallo-configuration.nix +++ b/stallo-configuration.nix @@ -17,7 +17,4 @@ }; }; }; - - # Enable PostgreSQL for development - services.postgresql.enable = true; } |