mirror of
https://github.com/alyraffauf/nixcfg.git
synced 2024-11-22 13:43:56 -05:00
users: declare UIDs
This commit is contained in:
parent
2193d39fc8
commit
9457d47b86
|
@ -12,6 +12,8 @@
|
||||||
hashedPassword = config.alyraffauf.users.aly.password;
|
hashedPassword = config.alyraffauf.users.aly.password;
|
||||||
isNormalUser = true;
|
isNormalUser = true;
|
||||||
linger = true;
|
linger = true;
|
||||||
|
uid = 1000;
|
||||||
|
|
||||||
openssh.authorizedKeys.keys = [
|
openssh.authorizedKeys.keys = [
|
||||||
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIGcJBb7+ZxkDdk06A0csNsbgT9kARUN185M8k3Lq7E/d u0_a336@localhost" # termux on winona
|
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIGcJBb7+ZxkDdk06A0csNsbgT9kARUN185M8k3Lq7E/d u0_a336@localhost" # termux on winona
|
||||||
(builtins.readFile ../../../secrets/publicKeys/aly_lavaridge.pub)
|
(builtins.readFile ../../../secrets/publicKeys/aly_lavaridge.pub)
|
||||||
|
|
|
@ -11,6 +11,7 @@
|
||||||
extraGroups = ["networkmanager" "wheel" "docker" "libvirtd" "video"];
|
extraGroups = ["networkmanager" "wheel" "docker" "libvirtd" "video"];
|
||||||
hashedPassword = config.alyraffauf.users.dustin.password;
|
hashedPassword = config.alyraffauf.users.dustin.password;
|
||||||
isNormalUser = true;
|
isNormalUser = true;
|
||||||
|
uid = 1001;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -11,6 +11,7 @@
|
||||||
extraGroups = ["networkmanager" "wheel" "docker" "libvirtd" "video"];
|
extraGroups = ["networkmanager" "wheel" "docker" "libvirtd" "video"];
|
||||||
hashedPassword = config.alyraffauf.users.morgan.password;
|
hashedPassword = config.alyraffauf.users.morgan.password;
|
||||||
isNormalUser = true;
|
isNormalUser = true;
|
||||||
|
uid = 1002;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue