[NixOS] Don't manually add uid and home to users

This commit is contained in:
2021-07-11 16:48:01 -06:00
parent cb2578e3ad
commit cfdde16f12

View File

@@ -23,14 +23,10 @@
in {
imalison = userDefaults // {
name = "imalison";
uid = 1000;
home = "/home/imalison";
shell = pkgs.zsh;
};
kat = userDefaults // {
name = "kat";
uid = 1001;
home = "/home/kat";
shell = pkgs.zsh;
};
};