about summary refs log tree commit diff
path: root/machines/profpatsch
diff options
context:
space:
mode:
authorProfpatsch <mail@profpatsch.de>2017-04-26 20:55:10 +0200
committerProfpatsch <mail@profpatsch.de>2017-04-26 22:32:31 +0200
commit14ca13c92b0a8cceb18a9f8d01a818164babf39b (patch)
tree870e27abad3fbe94a4a01bf288d1eb1124cbc12b /machines/profpatsch
parent97e440e996e9c418e46af3dbcdba58595b5c11ea (diff)
machines/profpatsch: move mutableUsers to base
Diffstat (limited to 'machines/profpatsch')
-rw-r--r--machines/profpatsch/base-workstation.nix2
-rw-r--r--machines/profpatsch/base.nix3
2 files changed, 3 insertions, 2 deletions
diff --git a/machines/profpatsch/base-workstation.nix b/machines/profpatsch/base-workstation.nix
index 15897f3d..9e322060 100644
--- a/machines/profpatsch/base-workstation.nix
+++ b/machines/profpatsch/base-workstation.nix
@@ -87,8 +87,6 @@ in {
     ########
     # Users
 
-    # Nobody wants mutable state. :)
-    users.mutableUsers = false;
     users.users = { inherit philip; };
 
   };
diff --git a/machines/profpatsch/base.nix b/machines/profpatsch/base.nix
index 758a6d8a..7a450d2e 100644
--- a/machines/profpatsch/base.nix
+++ b/machines/profpatsch/base.nix
@@ -33,6 +33,9 @@ in
       myPkgs.vim        # slight improvement over vi
     ];
 
+    # Nobody wants mutable state. :)
+    users.mutableUsers = false;
+
   };
 
 }