adds age to dnsc-server
This commit is contained in:
parent
0449a0fac0
commit
25baab3361
1 changed files with 22 additions and 16 deletions
14
flake.nix
14
flake.nix
|
|
@ -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 {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue