move refinery config to separate module + add msdl server config

This commit is contained in:
Joeri Exelmans 2025-10-02 15:01:05 +02:00
parent 6b42696aee
commit ada952bbba
4 changed files with 197 additions and 30 deletions

View file

@ -22,9 +22,26 @@
];
};
deemz = nixpkgs-stable.lib.nixosSystem {
specialArgs = { inherit system; icomidal=icomidal.packages.${system}.default; };
specialArgs = {
inherit system;
icomidal=icomidal.packages.${system}.default;
host = "deemz.org";
baseUrl = "/refinery";
};
modules = [
./deemz.org/configuration.nix
./deemz.org/refinery.nix
];
};
msdl = nixpkgs-stable.lib.nixosSystem {
specialArgs = {
inherit system;
host="msdl-testing.uantwerpen.be";
baseUrl="/refinery";
};
modules = [
./msdl/configuration.nix
./deemz.org/refinery.nix
];
};
};