Nixconfigs/systems/selene/system.nix
Maxiem Geldhof 643396a7dd oh my zsh
2025-10-13 18:48:38 +02:00

19 lines
536 B
Nix

{ agenix, jellyfin-exporter, nixpkgs, ... }:
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
];
}