1{ lib, ... }: 2 3with lib; { 4 options.modules.desktop = { 5 enable = mkOption { 6 default = false; 7 example = true; 8 description = "Whether to enable Deskop options."; 9 type = types.bool; 10 }; 11 }; 12 13 imports = [ 14 ./hyprland.nix 15 ./theme.nix 16 ./tools.nix 17 ]; 18}