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 /configuration.nix | |
parent | 94be3b03ba3b7060ade315121ddcaddab1d6f5a9 (diff) |
refactor: Enable PostgreSQL on both machines
Diffstat (limited to 'configuration.nix')
-rw-r--r-- | configuration.nix | 3 |
1 files changed, 3 insertions, 0 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 = { |