users/friends: allow linus to be root

This commit is contained in:
Raito Bezarius 2023-09-18 09:59:14 +02:00
parent 5a1aa0eef7
commit 80099f64ab

View file

@ -19,7 +19,9 @@ in
home = "/home/linus";
shell = "/run/current-system/sw/bin/zsh";
uid = 2001;
extraGroups = trustedFriendGroups;
# Raito: I allowed linus to be root to get some stuff done
# on behalf of me.
extraGroups = [ "wheel" ] ++ trustedFriendGroups;
openssh.authorizedKeys.keyFiles = [ ./keys/linus.keys ];
};
};