Files
nixos-config-bootstrap/variables.nix

23 lines
349 B
Nix

{
config,
pkgs,
lib,
...
}:
{
boot.loader.grub = {
device = "/dev/vda";
efiSupport = lib.mkDefault false;
efiInstallAsRemovable = config.boot.loader.grub.efiSupport;
};
systemd.network.networks.eth0 = {
networkConfig.DHCP = "yes";
matchConfig.Name = "eth0";
};
networking.nameservers = [
"8.8.8.8"
];
}