notohh
3d2e5368cb
Some checks failed
fmt check / check (push) Waiting to run
flake check / check (push) Has been cancelled
15 lines
264 B
Nix
15 lines
264 B
Nix
_: {
|
|
networking = {
|
|
networkmanager.enable = true;
|
|
nameservers = ["192.168.1.221"];
|
|
firewall = {
|
|
enable = true;
|
|
};
|
|
};
|
|
environment.etc = {
|
|
"resolv.conf".text = ''
|
|
nameserver 192.168.1.103
|
|
nameserver 1.1.1.1
|
|
'';
|
|
};
|
|
}
|