diff --git a/machines/massicot/default.nix b/machines/massicot/default.nix index 78b06f0..81fd528 100644 --- a/machines/massicot/default.nix +++ b/machines/massicot/default.nix @@ -7,11 +7,12 @@ ]; boot.loader.efi.canTouchEfiVariables = true; - boot.loader.efi.efiSysMountPoint = "/boot/efi"; + boot.loader.efi.efiSysMountPoint = "/boot"; boot.loader.grub = { enable = true; efiSupport = true; - } + device = "/dev/sda"; + }; environment.systemPackages = with pkgs; [ git diff --git a/machines/massicot/networking.nix b/machines/massicot/networking.nix index ec0bd4d..fd5bf27 100644 --- a/machines/massicot/networking.nix +++ b/machines/massicot/networking.nix @@ -1,13 +1,15 @@ -networking = { - interfaces = { - eth0.ipv6.addresses = [{ - address = "2a01:4f8:c17:345f::1"; - prefixLength = 64; - }]; +{ + networking = { + interfaces = { + eth0.ipv6.addresses = [{ + address = "2a01:4f8:c17:345f::1"; + prefixLength = 64; + }]; + }; + defaultGateway6 = { + address = "fe80::1"; + interface = "eth0"; + }; + nameservers = [ "2a00:1098:2b::1" "2a00:1098:2c::1" "2a01:4f9:c010:3f02::1"]; }; - defaultGateway6 = { - address = "fe80::1"; - interface = "eth0"; - }; - nameservers = [ "2a00:1098:2b::1" "2a00:1098:2c::1" "2a01:4f9:c010:3f02::1"]; -}; \ No newline at end of file +} \ No newline at end of file