mirror of
https://github.com/blahai/nyx.git
synced 2025-02-22 16:15:10 +00:00
Radarr
This commit is contained in:
parent
9ec8779842
commit
84499d287f
3 changed files with 31 additions and 4 deletions
|
@ -71,11 +71,19 @@
|
||||||
};
|
};
|
||||||
|
|
||||||
nix = {
|
nix = {
|
||||||
package = pkgs.lix;
|
|
||||||
nixPath = ["nixpkgs=${config.nix.registry.nixpkgs.to.path}"];
|
nixPath = ["nixpkgs=${config.nix.registry.nixpkgs.to.path}"];
|
||||||
channel.enable = false;
|
channel.enable = false;
|
||||||
settings = {
|
settings = {
|
||||||
experimental-features = ["nix-command" "flakes" "auto-allocate-uids"];
|
experimental-features = [
|
||||||
|
"nix-command"
|
||||||
|
"flakes"
|
||||||
|
"auto-allocate-uids"
|
||||||
|
"pipe-operator"
|
||||||
|
"recursive-nix"
|
||||||
|
"ca-derivations"
|
||||||
|
"dynamic-derivations"
|
||||||
|
"fetch-closure"
|
||||||
|
];
|
||||||
max-jobs = "auto";
|
max-jobs = "auto";
|
||||||
sandbox = true;
|
sandbox = true;
|
||||||
auto-optimise-store = true;
|
auto-optimise-store = true;
|
||||||
|
|
|
@ -179,7 +179,16 @@
|
||||||
nix = {
|
nix = {
|
||||||
nixPath = ["nixpkgs=${inputs.nixpkgs}"];
|
nixPath = ["nixpkgs=${inputs.nixpkgs}"];
|
||||||
settings = {
|
settings = {
|
||||||
experimental-features = ["nix-command" "flakes" "auto-allocate-uids"];
|
experimental-features = [
|
||||||
|
"nix-command"
|
||||||
|
"flakes"
|
||||||
|
"auto-allocate-uids"
|
||||||
|
"pipe-operator"
|
||||||
|
"recursive-nix"
|
||||||
|
"ca-derivations"
|
||||||
|
"dynamic-derivations"
|
||||||
|
"fetch-closure"
|
||||||
|
];
|
||||||
max-jobs = "auto";
|
max-jobs = "auto";
|
||||||
sandbox = true;
|
sandbox = true;
|
||||||
auto-optimise-store = true;
|
auto-optimise-store = true;
|
||||||
|
|
|
@ -25,14 +25,24 @@
|
||||||
group = "jellyfin";
|
group = "jellyfin";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
radarr = {
|
||||||
|
enable = true;
|
||||||
|
openFirewall = true;
|
||||||
|
dataDir = "/mnt/zootfs/Media/radarr";
|
||||||
|
package = pkgs.radarr;
|
||||||
|
user = "jellyfin";
|
||||||
|
group = "jellyfin";
|
||||||
|
};
|
||||||
|
|
||||||
prowlarr = {
|
prowlarr = {
|
||||||
enable = true;
|
enable = true;
|
||||||
openFirewall = true;
|
openFirewall = true;
|
||||||
package = pkgs.prowlarr;
|
package = pkgs.prowlarr;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
# This bullshittery is cuz sonarr v4 still uses
|
# This bullshittery is cuz sonarr v4 still uses
|
||||||
# dotnet 6 which is LTS and is marked broken in
|
# dotnet 6 which is EOL and is marked broken in
|
||||||
# nixpkgs but they are moving to 8 in v5 which
|
# nixpkgs but they are moving to 8 in v5 which
|
||||||
# will happen eventually (not anytime soon?)
|
# will happen eventually (not anytime soon?)
|
||||||
nixpkgs.config.permittedInsecurePackages = [
|
nixpkgs.config.permittedInsecurePackages = [
|
||||||
|
|
Loading…
Add table
Reference in a new issue