desktop/apps: init stremio

This commit is contained in:
Sakooooo 2024-08-20 02:19:22 +04:00
parent bf84fa22ec
commit 28e54c8abf
Signed by: sako
GPG key ID: 3FD715D87D7725E0
2 changed files with 16 additions and 0 deletions

View file

@ -14,5 +14,6 @@
./nextcloud
./rssguard
./localsend
./stremio
];
}

View file

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