adds age to dnsc-server

This commit is contained in:
Dennis Schoepf 2025-06-22 21:39:11 +02:00
parent 0449a0fac0
commit 25baab3361

View file

@ -13,20 +13,26 @@
ip-whitelist.url = "github:Oak-Digital/nixos-ip-whitelist-firewall";
};
outputs = {
outputs =
{
self,
nixpkgs,
home-manager,
nix-darwin,
agenix,
...
} @ inputs: let
}@inputs:
let
inherit (self) outputs;
in {
in
{
nixosConfigurations.dnsc-server = nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
specialArgs = { inherit inputs outputs; };
modules = [./hosts/dnsc-server];
modules = [
./hosts/dnsc-server
agenix.nixosModules.default
];
};
nixosConfigurations.dnsc-vps-sm = nixpkgs.lib.nixosSystem {