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
];
};
}

View file

@ -136,6 +136,7 @@
mullvad-browser.enable = true;
};
spotify.enable = true;
stremio.enable = true;
};
};
};

View file

@ -27,5 +27,6 @@ in
};
spotify.enable = mkEnableOption "Spotify";
stremio.enable = mkEnableOption "Stremio free media center";
};
}