diff --git a/hosts/workstation/configuration.nix b/hosts/workstation/configuration.nix index df1e4fd..1c2315f 100644 --- a/hosts/workstation/configuration.nix +++ b/hosts/workstation/configuration.nix @@ -57,15 +57,21 @@ in users = { groups.nixremote.gid = 555; users = { - jawz.packages = builtins.attrValues { - inherit (pkgs) - distrobox # install packages from other os - gocryptfs # encrypted filesystem! shhh!!! - vcsi # video thumbnails for torrents, can I replace it with ^? - keypunch # practice typing - google-cloud-sdk-gce - ; - }; + jawz.packages = + [ + (pkgs.google-cloud-sdk.withExtraComponents [ + pkgs.google-cloud-sdk.components.gke-gcloud-auth-plugin + ]) + ] + ++ builtins.attrValues { + inherit (pkgs) + distrobox # install packages from other os + gocryptfs # encrypted filesystem! shhh!!! + vcsi # video thumbnails for torrents, can I replace it with ^? + keypunch # practice typing + google-cloud-sdk-gce + ; + }; nixremote = { isNormalUser = true; createHome = true;