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";