Nix configurations for my homelab
0

Configure Feed

Select the types of activity you want to include in your feed.

modules/machine-info.nix: remove vps option

I don't have a VPS at the moment

+1 -6
+1 -1
modules/basic.nix
··· 57 57 services = { 58 58 acpid.enable = true; 59 59 # TODO: Setup email 60 - smartd.enable = config.garden.info.host.vps == false; 60 + smartd.enable = true; 61 61 }; 62 62 63 63 systemd.network.enable = true;
-5
modules/machine-info.nix
··· 11 11 default = false; 12 12 description = "Whether or not a machine is a server"; 13 13 }; 14 - vps = lib.mkOption { 15 - type = with lib.types; bool; 16 - default = false; 17 - description = "Whether or not a machine is a VPS"; 18 - }; 19 14 }; 20 15 }