Original commit

This commit is contained in:
Maxiem Geldhof 2025-10-12 17:15:04 +02:00
commit cc74263a3b
26 changed files with 3052 additions and 0 deletions

19
systems/selene/system.nix Normal file
View file

@ -0,0 +1,19 @@
{ 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
];
}