diff --git a/modules/desktop/default.nix b/modules/desktop/default.nix index d09253c..08ef60d 100644 --- a/modules/desktop/default.nix +++ b/modules/desktop/default.nix @@ -5,6 +5,7 @@ ./esphome.nix ./gnome.nix ./i18n.nix + ./plasma.nix ./plymouth.nix ./steam.nix ]; diff --git a/modules/desktop/plasma.nix b/modules/desktop/plasma.nix new file mode 100644 index 0000000..c903a03 --- /dev/null +++ b/modules/desktop/plasma.nix @@ -0,0 +1,19 @@ +{ config, lib, ... }: +let + cfg = config.my.desktop.plasma; +in +{ + options.my.utils.plasma = { + enable = lib.mkEnableOption "Enable KDE Plasma Desktop Environment"; + + }; + + config = lib.mkIf cfg.enable { + + hardware.bluetooth = { + enable = true; + powerOnBoot = true; + }; + + }; +}