From 80099f64aba28d5669af955f08b8d23b6415ecc1 Mon Sep 17 00:00:00 2001 From: Raito Bezarius Date: Mon, 18 Sep 2023 09:59:14 +0200 Subject: [PATCH] users/friends: allow linus to be root --- modules/users/friends.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/modules/users/friends.nix b/modules/users/friends.nix index 684353f..afb5437 100644 --- a/modules/users/friends.nix +++ b/modules/users/friends.nix @@ -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 ]; }; };