From 3b5b213fded5abb351a0ff0fb821fea3be483907 Mon Sep 17 00:00:00 2001 From: schweby Date: Sat, 25 Dec 2021 18:56:50 +0100 Subject: [PATCH] enable ssh for stream user --- hosts/nixda/configuration.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/hosts/nixda/configuration.nix b/hosts/nixda/configuration.nix index 28334e0..9fea0f4 100644 --- a/hosts/nixda/configuration.nix +++ b/hosts/nixda/configuration.nix @@ -54,6 +54,7 @@ isNormalUser = true; password = "hacchacc"; extraGroups = [ "audio" "video" ]; + openssh.authorizedKeys.keys = with pkgs.lib; concatLists (mapAttrsToList (name: user: if elem "wheel" user.extraGroups then user.openssh.authorizedKeys.keys else []) config.users.users); }; services.pipewire.enable = true;