Files
nixos-blueprint/modules/home/desktop/plasma/default.nix
2025-02-06 14:23:13 +02:00

21 lines
315 B
Nix

{
config,
pkgs,
lib,
...
}:
with lib; let
cfg = config.desktop.plasma;
in {
options = {
desktop.plasma.enable =
mkEnableOption "enable plasma desktop";
};
config = mkIf cfg.enable {
stylix.targets.kde.enable = true;
home.packages = with pkgs; [
wl-clipboard-rs
];
};
}