From 2c3ea872d6e18536359aff8e05862c45584a7b62 Mon Sep 17 00:00:00 2001 From: Vincent Ambo Date: Mon, 23 Oct 2017 10:05:47 +0200 Subject: [PATCH] refactor: Enable PostgreSQL on both machines --- configuration.nix | 3 +++ stallo-configuration.nix | 3 --- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/configuration.nix b/configuration.nix index 4fd9c71d2..44b3040d8 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 c3e73d41f..b58497f9e 100644 --- a/stallo-configuration.nix +++ b/stallo-configuration.nix @@ -17,7 +17,4 @@ }; }; }; - - # Enable PostgreSQL for development - services.postgresql.enable = true; }