Nix configurations for my homelab

modules/machine-info.nix: remove vps option

I don't have a VPS at the moment

yemou.pink 89011c69 d38165c3

verified
Changed files
+1 -6
modules
+1 -1
modules/basic.nix
···
services = {
acpid.enable = true;
# TODO: Setup email
-
smartd.enable = config.garden.info.host.vps == false;
+
smartd.enable = true;
};
systemd.network.enable = true;
-5
modules/machine-info.nix
···
default = false;
description = "Whether or not a machine is a server";
};
-
vps = lib.mkOption {
-
type = with lib.types; bool;
-
default = false;
-
description = "Whether or not a machine is a VPS";
-
};
};
}