Files
nixos-blueprint/modules/home/desktop/cosmic/default.nix
unexplrd 86b77311f5 test cosmic
Signed-off-by: unexplrd <unexplrd@linerds.us>
2025-04-01 14:53:09 +03:00

20 lines
277 B
Nix

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