diff options
author | Vincent Ambo <tazjin@gmail.com> | 2017-10-23T08·05+0200 |
---|---|---|
committer | Vincent Ambo <tazjin@gmail.com> | 2017-10-23T08·05+0200 |
commit | 2c3ea872d6e18536359aff8e05862c45584a7b62 (patch) | |
tree | 32dd816ebea15ff00bd88c7290646a3ef65a6fba | |
parent | 94be3b03ba3b7060ade315121ddcaddab1d6f5a9 (diff) |
refactor: Enable PostgreSQL on both machines
-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; } |