these are working

This commit is contained in:
Osman Faruk Bayram 2025-10-23 22:02:41 +03:00
parent a6eb2ef366
commit b808e9e6e7
2 changed files with 2 additions and 1 deletions

View file

@ -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;
};

View file

@ -5,6 +5,7 @@
desktopEnvironment = lib.mkOption {
type = lib.types.enum [
"plasma"
"gnome"
"none"
];
default = "none";