Nix configurations for my homelab
0

Configure Feed

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

at main 373 B View raw
1{ lib, ... }: 2{ 3 options.cafe.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}