35 lines
639 B
Nix
35 lines
639 B
Nix
{ config, self, lib, inputs, pkgs, ... }:
|
|
|
|
with lib;
|
|
with inputs;
|
|
|
|
let
|
|
dns = inputs.dns;
|
|
in
|
|
{
|
|
networking = {
|
|
hostName = mkDefault "ns1";
|
|
useDHCP = false;
|
|
};
|
|
|
|
imports = [
|
|
../modules/malobeo_user.nix
|
|
../modules/sshd.nix
|
|
../modules/minimal_tools.nix
|
|
../modules/autoupdate.nix
|
|
];
|
|
|
|
services.bind = {
|
|
enable = true;
|
|
zones = {
|
|
"malobeo.org" = {
|
|
master = true;
|
|
file = pkgs.writeText "zone-malobeo.org" (dns.lib.toString "malobeo.org" (import ../modules/malobeo/zones.nix { inherit inputs; }));
|
|
};
|
|
};
|
|
};
|
|
|
|
system.stateVersion = "22.11"; # Did you read the comment?
|
|
}
|
|
|