From 327f607a0f3fac6a756a312033793117f33ff2a5 Mon Sep 17 00:00:00 2001 From: geekiot Date: Tue, 30 Sep 2025 00:26:14 +0500 Subject: [PATCH] Fix (device options): change all enabled to false, add FIXME warning --- options/device/README.md | 1 - options/device/laptop.nix | 10 ++++++---- 2 files changed, 6 insertions(+), 5 deletions(-) delete mode 100644 options/device/README.md diff --git a/options/device/README.md b/options/device/README.md deleted file mode 100644 index d433491..0000000 --- a/options/device/README.md +++ /dev/null @@ -1 +0,0 @@ -Опции для конфигурации устройства. \ No newline at end of file diff --git a/options/device/laptop.nix b/options/device/laptop.nix index 4d686ee..7625fe4 100644 --- a/options/device/laptop.nix +++ b/options/device/laptop.nix @@ -18,20 +18,20 @@ in battery.enable = lib.mkOption { type = lib.types.bool; - default = true; + default = false; description = "Battery configuration for the laptop."; }; bluetooth.enable = lib.mkOption { type = lib.types.bool; - default = true; + default = false; description = "Bluetooth configuration for the laptop."; }; cpu = { enable = lib.mkOption { type = lib.types.bool; - default = true; + default = false; description = "CPU configuration for the laptop."; }; type = lib.mkOption { @@ -42,11 +42,13 @@ in default = "intel"; description = "Laptop CPU type."; }; + # FIXME: Additional imports for devices config: + # inputs.nixos-hardware.nixosModules.common-cpu-intel }; sound.enable = lib.mkOption { type = lib.types.bool; - default = true; + default = false; description = "Sound configuration for the laptop."; }; };