forest/hosts/emira/configuration.nix
2023-10-02 18:47:47 +01:00

17 lines
362 B
Nix

{ config, pkgs, ... }: {
imports = [
../../common/generic.nix
../../roles/asterisk.nix
../../roles/kanidm.nix
../../roles/coredns
];
networking = {
hostName = "emira";
nameservers = [ "127.0.0.1" "::1" ];
dhcpcd.extraConfig = "nohook resolv.conf";
};
networking.firewall.enable = false;
system.stateVersion = "22.11";
}