Revert "Refactor nixarr without extra import"

This reverts commit 4696423d91.
This commit is contained in:
2025-10-19 19:51:25 -04:00
parent 4696423d91
commit 97d78bdd75
2 changed files with 8 additions and 3 deletions

View File

@@ -31,12 +31,14 @@
inputs.nixpkgs.follows = "nixpkgs";
inputs.home-manager.follows = "home-manager";
};
nixarr.url = "github:rasmus-kirk/nixarr";
};
outputs = {
self,
catppuccin,
lanzaboote,
nixarr,
nur,
plasma-manager,
sops-nix,
@@ -128,7 +130,7 @@
host = hosts.nixarr;
nixpkgs = inputs.nixpkgs;
home-manager = inputs.home-manager;
modules = [];
modules = [nixarr.nixosModules.default];
};
};
};

View File

@@ -3,12 +3,15 @@
nixarr,
...
}: {
services.jellyfin = {
nixarr = {
enable = true;
jellyfin = {
enable = true;
openFirewall = true;
};
services.sabnzbd = {
sabnzbd = {
enable = true;
openFirewall = true;
};
};
}