Commit 1713ff651ea6
Changed files (2)
machines
modules
profiles
machines/wakasu.nix
@@ -34,7 +34,10 @@
kind = true;
nr = true;
};
- profiles.containers.openshift.enable = true;
+ profiles.containers.openshift = {
+ enable = true;
+ crc = true;
+ };
programs = {
google-chrome.enable = true;
podman.enable = true;
modules/profiles/openshift.nix
@@ -21,6 +21,7 @@ in
type = types.package;
};
};
+ crc = mkEnableOption "Enable crc";
};
};
config = mkIf cfg.enable (mkMerge [
@@ -41,5 +42,12 @@ in
];
}
)
+ (
+ mkIf cfg.crc {
+ home.packages = with pkgs; [
+ my.crc
+ ];
+ }
+ )
]);
}