diff --git a/machines/core/users.nix b/machines/core/users.nix index 52a7730..7ff4da2 100644 --- a/machines/core/users.nix +++ b/machines/core/users.nix @@ -8,15 +8,16 @@ home = "/home/felix"; group = "felix"; extraGroups = [ - "wheel" - "adbusers" - "audio" - "dialout" - "docker" - "input" - "libvirtd" - "networkmanager" - "video" + "adbusers" # adb control + "audio" # sound control + "dialout" # serial-console + "docker" # usage of `docker` socket + "input" # mouse control + "libvirtd" # kvm control + "networkmanager" # wireless configuration + "podman" # usage of `podman` socket + "video" # screen control + "wheel" # `sudo` for the user. ]; passwordFile = config.sops.secrets."users/felix/password".path; openssh.authorizedKeys.keys = [ "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIOFx6OLwL9MbkD3mnMsv+xrzZHN/rwCTgVs758SCLG0h felix@thinkman" ];