all: stop installing go by default

This commit is contained in:
Aaron Bieber 2022-11-14 16:47:26 -07:00
parent 0a4f1c7ce4
commit 12230fd136
No known key found for this signature in database

View File

@ -8,7 +8,6 @@ let
openssh.authorizedKeys.keys = config.myconf.hwPubKeys
++ config.myconf.managementPubKeys;
};
goVersion = pkgs.go_1_18;
in {
options = {
defaultUsers = {
@ -45,7 +44,7 @@ in {
};
environment.systemPackages =
if isUnstable then [ goVersion pkgs.yash ] else [ goVersion ];
if isUnstable then [ pkgs.yash ] else [ ];
};
}