notohh
70a3623c74
All checks were successful
flake check / check (push) Successful in 4m2s
fmt check / check (push) Successful in 45s
14 lines
229 B
Nix
14 lines
229 B
Nix
_: {
|
|
networking = {
|
|
networkmanager.enable = true;
|
|
firewall = {
|
|
enable = true;
|
|
};
|
|
};
|
|
environment.etc = {
|
|
"resolv.conf".text = ''
|
|
nameserver 9.9.9.9
|
|
nameserver 149.112.112.112
|
|
'';
|
|
};
|
|
}
|