19 lines
298 B
Nix
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;
|
|
};
|
|
|
|
};
|
|
}
|