configuration.nix/hosts/bifrost/network.nix

13 lines
183 B
Nix
Raw Normal View History

2024-11-09 20:27:33 +05:30
{ lib, ... }: {
imports = [
../shared/network.nix
../shared/networkd.nix
];
networking = {
nameservers = lib.mkForce [
"1.1.1.1"
"1.0.0.1"
];
};
}