19 lines
503 B
Nix
19 lines
503 B
Nix
{ agenix }:
|
|
nixpkgs.lib.nixosSystem {
|
|
system = system;
|
|
specialArgs = {
|
|
# This selects the package for the current system and passes it
|
|
exporter-pkg = jellyfin-exporter.packages.${system}.default;
|
|
};
|
|
|
|
modules = [
|
|
./basesettings.nix
|
|
./users.nix
|
|
../../modules/servermodules/packages.nix
|
|
(import ./nginx.nix "maxiemgeldhof.com")
|
|
../../modules/servermodules/grafana.nix
|
|
../../modules/servermodules/jellyfin.nix
|
|
./volumes.nix
|
|
agenix.nixosModules.default
|
|
];
|
|
}
|