20 lines
277 B
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
|
|
];
|
|
};
|
|
}
|