mirror of
https://github.com/ItsDrike/nixdots
synced 2024-11-10 02:49:41 +00:00
Add stremio
This commit is contained in:
parent
b55b49c842
commit
f726805e5c
|
@ -1,5 +1,6 @@
|
||||||
_: {
|
_: {
|
||||||
imports = [
|
imports = [
|
||||||
./wayland.nix
|
./wayland.nix
|
||||||
|
./stremio.nix
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
17
home/packages/gui/stremio.nix
Normal file
17
home/packages/gui/stremio.nix
Normal 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
|
||||||
|
];
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
|
@ -136,6 +136,7 @@
|
||||||
mullvad-browser.enable = true;
|
mullvad-browser.enable = true;
|
||||||
};
|
};
|
||||||
spotify.enable = true;
|
spotify.enable = true;
|
||||||
|
stremio.enable = true;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
|
@ -27,5 +27,6 @@ in
|
||||||
};
|
};
|
||||||
|
|
||||||
spotify.enable = mkEnableOption "Spotify";
|
spotify.enable = mkEnableOption "Spotify";
|
||||||
|
stremio.enable = mkEnableOption "Stremio free media center";
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue