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

This commit is contained in:
Ivan Malison 2021-07-11 16:48:01 -06:00
parent cb2578e3ad
commit cfdde16f12
No known key found for this signature in database
GPG Key ID: 62530EFBE99DC2F8

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;
};
};