diff options
| author | aethrvmn <me@aethrvmn.gr> | 2025-09-11 19:50:52 +0000 |
|---|---|---|
| committer | aethrvmn <me@aethrvmn.gr> | 2025-09-11 19:50:52 +0000 |
| commit | ec65552ac6bb642e1dde36e39f6e4e8ecb65d362 (patch) | |
| tree | 809cb45afd32b83f9f9077eb3c3763c40d0908b8 /modules/common/users | |
| parent | formatting (diff) | |
add user to audio group and update ssh key
Diffstat (limited to '')
| -rw-r--r-- | modules/common/users/default.nix | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/modules/common/users/default.nix b/modules/common/users/default.nix index 6f086c7..3dfcbfa 100644 --- a/modules/common/users/default.nix +++ b/modules/common/users/default.nix @@ -7,11 +7,16 @@ users.aethrvmn = { isNormalUser = true; - extraGroups = [ "networkmanager" "video" "wheel" ]; + extraGroups = [ + "audio" + "networkmanager" + "video" + "wheel" + ]; password = "gg"; openssh.authorizedKeys.keys = [ - "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIFTRmMBlTFJbOWQBLI9XS2HMdUSlsAcaQ6vWjLpfweEo aethrvmn@apotheke.earth" + "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIF3R0qrWQ9omz87lt4YRCdI+QV55KxMqxU+Vz1mUM4ye me@aethrvmn.gr" ]; }; }; |
