summaryrefslogtreecommitdiffstats
path: root/modules/device.nix
diff options
context:
space:
mode:
authorJon Santmyer <jon@jonsantmyer.com>2026-08-29 10:29:26 -0400
committerJon Santmyer <jon@jonsantmyer.com>2026-08-29 10:29:26 -0400
commit2ea5db7f5d23edb609823c4e3279f980389885cd (patch)
treebc30850ffd313f3b31f8fe4149b5b9433405506b /modules/device.nix
parent40c65ac3e6226dcf5c834c0ba2447df1bd0ca37d (diff)
downloadnix-config-laptop.tar.gz
nix-config-laptop.tar.bz2
nix-config-laptop.zip
laptop changes 2026-08-29laptop
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"; };
};
}