add cinny sgtable

This commit is contained in:
Sakooooo 2024-08-21 19:16:31 +04:00
parent b7eb06ca8e
commit 869738e25b
Signed by: sako
GPG key ID: 3FD715D87D7725E0
2 changed files with 23 additions and 0 deletions

View file

@ -0,0 +1,22 @@
{
outputs,
options,
config,
lib,
pkgs,
...
}:
let
cfg = config.modules.desktop.chat.cinny;
in {
options.modules.desktop.chat.cinny = {
enable = lib.mkEnableOption false;
};
config = lib.mkIf cfg.enable {
users.users.sako.packages = with pkgs.stable; [
cinny-desktop
];
};
}

View file

@ -7,5 +7,6 @@
./telegram
./weechat
./signal
./cinny
];
}