nix/modules/desktop/plasma.nix
2024-09-11 22:49:56 +02:00

19 lines
300 B
Nix

{ config, lib, ... }:
let
cfg = config.my.desktop.plasma;
in
{
options.my.desktop.plasma = {
enable = lib.mkEnableOption "Enable KDE Plasma Desktop Environment";
};
config = lib.mkIf cfg.enable {
hardware.bluetooth = {
enable = true;
powerOnBoot = true;
};
};
}