nix/modules/desktop/plasma.nix
2024-09-11 21:30:00 +02:00

19 lines
298 B
Nix

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