summaryrefslogtreecommitdiffstats
path: root/modules/device.nix
diff options
context:
space:
mode:
authorJon Santmyer <jon@jonsantmyer.com>2026-08-29 10:42:40 -0400
committerJon Santmyer <jon@jonsantmyer.com>2026-08-29 10:42:40 -0400
commit232c3bc6ca183dadb380fb80e9db25ae72565cf8 (patch)
tree97ac99eb2c1f030e0b9fc16d8f0622e6c8c79b72 /modules/device.nix
parentb5906d21bbe4cc15ad474397c0e08d4112057af1 (diff)
parent2ea5db7f5d23edb609823c4e3279f980389885cd (diff)
downloadnix-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.nix6
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"; };
};
}