add obs
This commit is contained in:
parent
2152b0e919
commit
c3333d9585
3 changed files with 23 additions and 0 deletions
|
@ -37,6 +37,7 @@
|
|||
calibre.enable = true;
|
||||
kindle-comic-converter.enable = true;
|
||||
mangal.enable = true;
|
||||
obs.enable = true;
|
||||
};
|
||||
chat = {
|
||||
discord.enable = true;
|
||||
|
|
|
@ -8,5 +8,6 @@
|
|||
./kcc
|
||||
./calibre
|
||||
./mangal
|
||||
./obs
|
||||
];
|
||||
}
|
||||
|
|
21
modules/desktop/apps/obs/default.nix
Normal file
21
modules/desktop/apps/obs/default.nix
Normal 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
|
||||
];
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue