fix: set users.users.<name>.home for darwin system, bump home-manager to branch release-23.05

This commit is contained in:
admin
2023-06-01 10:40:11 +08:00
committed by ryan4yin
parent dd2040568d
commit 0d53bea851
5 changed files with 13 additions and 9 deletions

View File

@@ -58,4 +58,10 @@
];
};
# Define a user account. Don't forget to set a password with passwd.
users.users.admin = {
home = "/Users/admin";
description = "admin";
};
}

View File

@@ -8,6 +8,7 @@
};
# Define a user account. Don't forget to set a password with passwd.
users.users.ryan = {
home = "/home/ryan";
isNormalUser = true;
description = "ryan";
extraGroups = [ "ryan" "users" "networkmanager" "wheel" "docker" "wireshark" "adbusers" ];