mirror of
https://github.com/ItsDrike/nixdots
synced 2024-11-10 09:39:42 +00:00
18 lines
219 B
Nix
18 lines
219 B
Nix
|
{
|
||
|
lib,
|
||
|
pkgs,
|
||
|
osConfig,
|
||
|
...
|
||
|
}: let
|
||
|
inherit (lib) mkIf;
|
||
|
|
||
|
cfg = osConfig.myOptions.home-manager.programs.stremio;
|
||
|
in {
|
||
|
config = mkIf cfg.enable {
|
||
|
home.packages = with pkgs; [
|
||
|
stremio
|
||
|
];
|
||
|
};
|
||
|
}
|
||
|
|