test cosmic

Signed-off-by: unexplrd <unexplrd@linerds.us>
This commit is contained in:
2025-04-01 14:08:18 +03:00
parent ad35103c27
commit 86b77311f5
6 changed files with 118 additions and 7 deletions

View File

@ -0,0 +1,19 @@
{
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
];
};
}