Nix configurations for my homelab
at main 375 B view raw
1{ lib, ... }: 2{ 3 options.garden.info.host = { 4 gui = lib.mkOption { 5 type = with lib.types; bool; 6 default = false; 7 description = "If the machine should have a GUI and included GUI apps"; 8 }; 9 server = lib.mkOption { 10 type = with lib.types; bool; 11 default = false; 12 description = "Whether or not a machine is a server"; 13 }; 14 }; 15}