This commit is contained in:
Sakooooo 2023-08-06 20:19:35 +03:00
parent 2152b0e919
commit c3333d9585
Signed by: sako
GPG key ID: 3FD715D87D7725E0
3 changed files with 23 additions and 0 deletions

View file

@ -37,6 +37,7 @@
calibre.enable = true; calibre.enable = true;
kindle-comic-converter.enable = true; kindle-comic-converter.enable = true;
mangal.enable = true; mangal.enable = true;
obs.enable = true;
}; };
chat = { chat = {
discord.enable = true; discord.enable = true;

View file

@ -8,5 +8,6 @@
./kcc ./kcc
./calibre ./calibre
./mangal ./mangal
./obs
]; ];
} }

View file

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