From b808e9e6e7c4d9bd36711ae284b249accd70a4f5 Mon Sep 17 00:00:00 2001 From: osbm Date: Thu, 23 Oct 2025 22:02:41 +0300 Subject: [PATCH] these are working --- modules/nixos/hardware/bluetooth.nix | 2 +- modules/nixos/options.nix | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/modules/nixos/hardware/bluetooth.nix b/modules/nixos/hardware/bluetooth.nix index d307d1d..4fc8157 100644 --- a/modules/nixos/hardware/bluetooth.nix +++ b/modules/nixos/hardware/bluetooth.nix @@ -1,6 +1,6 @@ { config, lib, ... }: { - config = lib.mkIf config.hardware.bluetooth.enable { + config = lib.mkIf config.osbmModules.hardware.bluetooth.enable { hardware.bluetooth.enable = true; hardware.bluetooth.powerOnBoot = true; }; diff --git a/modules/nixos/options.nix b/modules/nixos/options.nix index 4e0c973..0c25029 100644 --- a/modules/nixos/options.nix +++ b/modules/nixos/options.nix @@ -5,6 +5,7 @@ desktopEnvironment = lib.mkOption { type = lib.types.enum [ "plasma" + "gnome" "none" ]; default = "none";