Commit b6b8c4761f58
Changed files (1)
modules
profiles
modules/profiles/containers.nix
@@ -23,13 +23,13 @@ in
type = types.bool;
};
};
- config = mkIf cfg.enable {
- profiles.docker.enable = cfg.docker;
- programs.podman.enable = cfg.podman;
- home.packages = with pkgs; [
- go-containerregistry
- skopeo
- ];
- };
+ };
+ config = mkIf cfg.enable {
+ profiles.docker.enable = cfg.docker;
+ programs.podman.enable = cfg.podman;
+ home.packages = with pkgs; [
+ go-containerregistry
+ skopeo
+ ];
};
}