Skip to content

Commit f2e2d7a

Browse files
committed
feat: rename guest user on hp-laptop
Signed-off-by: Reputable2722 <153411261+Reputable2772@users.noreply.github.com>
1 parent bb9036c commit f2e2d7a

1 file changed

Lines changed: 6 additions & 5 deletions

File tree

System/HP-Laptop/users.nix

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
...
99
}:
1010
{
11-
users.mutableUsers = false;
11+
users.mutableUsers = true;
1212
users.users.root.hashedPasswordFile = config.age.secrets.rootPassword.path;
1313
users.users.selfhosted = {
1414
isNormalUser = true;
@@ -32,17 +32,18 @@
3232
linger = true;
3333
};
3434

35-
users.users.guest = {
35+
users.users.vishnu = {
3636
isNormalUser = true;
3737
home = "/home/guest";
38-
description = "Guest";
38+
description = "Vishnu";
3939
extraGroups = [
4040
"input"
4141
"video"
4242
"render"
4343
"networkmanager"
4444
];
45-
hashedPasswordFile = config.age.secrets.guestPassword.path;
45+
initialHashedPassword = "$y$j9T$T.1e5vo2lNood2mmpYVp8.$71pkBSAtLxcrN7qDsSuvB.40pmc7nC1tO0CrvL402xC";
46+
# hashedPasswordFile = config.age.secrets.guestPassword.path;
4647
};
4748

4849
home-manager = {
@@ -63,7 +64,7 @@
6364
];
6465
};
6566

66-
guest = {
67+
vishnu = {
6768
imports = [
6869
../../Users/Guest/home.nix
6970
{

0 commit comments

Comments
 (0)