{ config, pkgs, ... }: { imports = [ ../modules/nextdns.nix ]; boot.loader.timeout = 1; environment.systemPackages = with pkgs; [ nix-index ]; programs.zsh = { histFile = "\${XDG_DATA_HOME}/zsh/history"; }; networking.nextdns = { enable = true; configID = "abd6e5"; identifyDevice = true; }; networking.extraHosts = '' 127.0.0.1 ${config.networking.hostName} ::1 ${config.networking.hostName} ''; }