Files
nixos-blueprint/modules/home/desktop/plasma/default.nix

20 lines
277 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 {
home.packages = with pkgs; [
wl-clipboard-rs
];
};
}