diff --git a/common/boot.nix b/common/boot.nix index cf85951..1ff695f 100644 --- a/common/boot.nix +++ b/common/boot.nix @@ -2,7 +2,7 @@ { # Use the GRUB 2 boot loader. - boot.loader.grub.enable = true; + boot.loader.grub.enable = lib.mkForce true; boot.loader.grub.version = 2; # Enable GRUB2 serial console diff --git a/xeon02/configuration.nix b/xeon02/configuration.nix index 5d097dd..83d4114 100644 --- a/xeon02/configuration.nix +++ b/xeon02/configuration.nix @@ -1,10 +1,12 @@ -{ config, pkgs, ... }: +{ config, pkgs, modulesPath, lib, ... }: { - imports = [ ../common/main.nix ]; + imports = [ ../common/main.nix (modulesPath + "/installer/netboot/netboot-minimal.nix") ]; # Select the this using the ID to avoid mismatches boot.loader.grub.device = "/dev/disk/by-id/wwn-0x55cd2e414d535629"; + #programs.ssh.forwardX11 = false; + programs.ssh.setXAuthLocation = lib.mkForce true; networking = { hostName = "xeon02";