aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--modules/system/users/default.nix3
-rw-r--r--profiles/default.nix3
2 files changed, 3 insertions, 3 deletions
diff --git a/modules/system/users/default.nix b/modules/system/users/default.nix
index 9f874a0..2e7635d 100644
--- a/modules/system/users/default.nix
+++ b/modules/system/users/default.nix
@@ -5,9 +5,6 @@ let
sshPub = builtins.fromTOML (builtins.readFile ../../../configs/ssh-pubkeys.toml);
in
{
- # Users are managed through this configuration. If a user is added
- # manually, it will be removed on system activation.
- users.mutableUsers = false;
users.groups.fcuny = { gid = 1000; };
users.users.fcuny = {
diff --git a/profiles/default.nix b/profiles/default.nix
index 2353dde..9cca61b 100644
--- a/profiles/default.nix
+++ b/profiles/default.nix
@@ -1,5 +1,8 @@
{ pkgs, config, lib, ... }:
{
+ # Users are managed through nix. If a user is added manually, it
+ # will be removed on system activation.
+ users.mutableUsers = false;
boot = {
loader = {