diff options
Diffstat (limited to 'modules/device.nix')
| -rw-r--r-- | modules/device.nix | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/device.nix b/modules/device.nix index fbf4d95..e46e4fa 100644 --- a/modules/device.nix +++ b/modules/device.nix @@ -10,8 +10,8 @@ gpu = lib.mkOption {type = lib.types.enum ["intel" "nvidia"];}; drive = lib.mkOption {type = lib.types.enum ["ssd" "nvme"];}; - hasBluetooth = lib.mkOption {type = lib.types.bool;}; - hasPrinter = lib.mkOption { type = lib.types.bool; }; - displayProtocol = lib.mkOption {type = lib.types.enum ["xserver" "wayland"];}; + hasBluetooth = lib.mkOption {type = lib.types.bool; default = true; }; + hasPrinter = lib.mkOption { type = lib.types.bool; default = true; }; + displayProtocol = lib.mkOption {type = lib.types.enum ["xserver" "wayland"]; default = "wayland"; }; }; } |
