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