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