add cinny sgtable
This commit is contained in:
parent
b7eb06ca8e
commit
869738e25b
2 changed files with 23 additions and 0 deletions
22
modules/desktop/chat/cinny/default.nix
Normal file
22
modules/desktop/chat/cinny/default.nix
Normal 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
|
||||||
|
];
|
||||||
|
|
||||||
|
};
|
||||||
|
}
|
|
@ -7,5 +7,6 @@
|
||||||
./telegram
|
./telegram
|
||||||
./weechat
|
./weechat
|
||||||
./signal
|
./signal
|
||||||
|
./cinny
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue