Add nameservers for server config

Not sure why nix is ignoring the proxmox setting.
This commit is contained in:
Alexander Wainwright
2025-07-04 12:40:13 +10:00
parent 34a77a9273
commit 18f46f5e58

View File

@@ -1,5 +1,11 @@
{ config, pkgs, inputs, ... }:
{
networking.nameservers =
[
"192.168.1.80"
"192.168.1.20"
];
# enable mosh
programs.mosh.enable = true;
}