fmt: move the dns into its own folder
This commit is contained in:
parent
b1bd6ca40a
commit
cb0cfbaf4a
2 changed files with 5 additions and 5 deletions
|
@ -10,7 +10,7 @@ with lib; let
|
||||||
in {
|
in {
|
||||||
imports = [
|
imports = [
|
||||||
./acme.nix
|
./acme.nix
|
||||||
./dns.nix
|
../dns/dns.nix
|
||||||
./nginx.nix
|
./nginx.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
|
|
|
@ -291,8 +291,8 @@
|
||||||
else "ns2";
|
else "ns2";
|
||||||
in {
|
in {
|
||||||
imports = [
|
imports = [
|
||||||
./firewall.nix
|
../firewall.nix
|
||||||
../config/dns.nix
|
../../config/dns.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
options.services.skynet."${name}" = {
|
options.services.skynet."${name}" = {
|
||||||
|
@ -318,7 +318,7 @@ in {
|
||||||
|
|
||||||
records = lib.mkOption {
|
records = lib.mkOption {
|
||||||
description = "Records, sorted based on therir type";
|
description = "Records, sorted based on therir type";
|
||||||
type = lib.types.listOf (lib.types.submodule (import ./dns/options-records.nix {
|
type = lib.types.listOf (lib.types.submodule (import ./options-records.nix {
|
||||||
inherit lib;
|
inherit lib;
|
||||||
}));
|
}));
|
||||||
};
|
};
|
||||||
|
@ -357,7 +357,7 @@ in {
|
||||||
|
|
||||||
# secrets required
|
# secrets required
|
||||||
age.secrets.dns_dnskeys = {
|
age.secrets.dns_dnskeys = {
|
||||||
file = ../secrets/dns_dnskeys.conf.age;
|
file = ../../secrets/dns_dnskeys.conf.age;
|
||||||
owner = "named";
|
owner = "named";
|
||||||
group = "named";
|
group = "named";
|
||||||
};
|
};
|
Loading…
Reference in a new issue