diff options
| author | Jon Santmyer <jon@jonsantmyer.com> | 2026-08-29 10:42:40 -0400 |
|---|---|---|
| committer | Jon Santmyer <jon@jonsantmyer.com> | 2026-08-29 10:42:40 -0400 |
| commit | 232c3bc6ca183dadb380fb80e9db25ae72565cf8 (patch) | |
| tree | 97ac99eb2c1f030e0b9fc16d8f0622e6c8c79b72 /modules/device.nix | |
| parent | b5906d21bbe4cc15ad474397c0e08d4112057af1 (diff) | |
| parent | 2ea5db7f5d23edb609823c4e3279f980389885cd (diff) | |
| download | nix-config-232c3bc6ca183dadb380fb80e9db25ae72565cf8.tar.gz nix-config-232c3bc6ca183dadb380fb80e9db25ae72565cf8.tar.bz2 nix-config-232c3bc6ca183dadb380fb80e9db25ae72565cf8.zip | |
merge desktop laptop 2026-08-29
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"; }; }; } |
