Add stremio

This commit is contained in:
ItsDrike 2024-06-20 15:00:00 +02:00
parent b55b49c842
commit f726805e5c
Signed by: ItsDrike
GPG key ID: FA2745890B7048C0
4 changed files with 20 additions and 0 deletions

View file

@ -1,5 +1,6 @@
_: {
imports = [
./wayland.nix
./stremio.nix
];
}

View file

@ -0,0 +1,17 @@
{
lib,
pkgs,
osConfig,
...
}: let
inherit (lib) mkIf;
cfg = osConfig.myOptions.home-manager.programs.stremio;
in {
config = mkIf cfg.enable {
home.packages = with pkgs; [
stremio
];
};
}