Nixconfigs/systems/selene/system.nix
2025-10-12 17:39:55 +02:00

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
];
}