forest/hosts/emira/configuration.nix

18 lines
362 B
Nix
Raw Normal View History

2023-10-02 17:47:47 +00:00
{ 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";
}