about summary refs log tree commit diff
diff options
context:
space:
mode:
authorVincent Ambo <tazjin@gmail.com>2018-05-07T12·24+0200
committerVincent Ambo <tazjin@gmail.com>2018-05-08T20·33+0200
commit33167c8a865f75b1c83244513baeae643ec66599 (patch)
tree3d1f55136414654572157bdf019581cdd10ad7cb
parent484da65eed33b70dadde8dc3e8039d28d19b836e (diff)
refactor(services): Enable OpenSSH on all machines
-rw-r--r--configuration.nix2
-rw-r--r--stallo-configuration.nix2
2 files changed, 2 insertions, 2 deletions
diff --git a/configuration.nix b/configuration.nix
index 8d1b1d4d034d..a4891b812dd1 100644
--- a/configuration.nix
+++ b/configuration.nix
@@ -44,6 +44,8 @@
     package = import ./emacs.nix { inherit pkgs; };
   };
 
+  services.openssh.enable = true;
+
   # Enable GNOME keyring (required for Evolution)
   services.gnome3.gnome-keyring.enable = true;
 
diff --git a/stallo-configuration.nix b/stallo-configuration.nix
index 120544b1a312..a9a6eb610087 100644
--- a/stallo-configuration.nix
+++ b/stallo-configuration.nix
@@ -4,8 +4,6 @@
 {
   boot.initrd.luks.devices.stallo-luks.device = "/dev/disk/by-uuid/b484cf1e-a27b-4785-8bd6-fa85a004b073";
 
-  services.openssh.enable = true;
-
   # Use proprietary nvidia driver
   services.xserver.videoDrivers = [ "nvidia" ];