diff options
| author | Mark Nipper <nipsy@bitgnome.net> | 2025-11-24 12:47:08 -0800 |
|---|---|---|
| committer | Mark Nipper <nipsy@bitgnome.net> | 2025-11-24 12:47:08 -0800 |
| commit | d3a5926b4ae548d6623c3c918fad4967ce52699d (patch) | |
| tree | 5f68f8b67130327239308de11bdd6234a4f4c6b8 | |
| parent | ed822895ca8e80d534a339e3ec9f1043fe375854 (diff) | |
| download | nix-d3a5926b4ae548d6623c3c918fad4967ce52699d.tar nix-d3a5926b4ae548d6623c3c918fad4967ce52699d.tar.gz nix-d3a5926b4ae548d6623c3c918fad4967ce52699d.tar.bz2 nix-d3a5926b4ae548d6623c3c918fad4967ce52699d.tar.lz nix-d3a5926b4ae548d6623c3c918fad4967ce52699d.tar.xz nix-d3a5926b4ae548d6623c3c918fad4967ce52699d.tar.zst nix-d3a5926b4ae548d6623c3c918fad4967ce52699d.zip | |
Enable memtest86plus @*
| -rw-r--r-- | hosts/arrakis/default.nix | 1 | ||||
| -rw-r--r-- | hosts/darkstar/default.nix | 1 | ||||
| -rw-r--r-- | hosts/fangorn/default.nix | 5 | ||||
| -rw-r--r-- | hosts/ginaz/default.nix | 5 | ||||
| -rw-r--r-- | hosts/jupiter/default.nix | 5 | ||||
| -rw-r--r-- | hosts/kaitain/default.nix | 5 | ||||
| -rw-r--r-- | hosts/neptune/default.nix | 5 | ||||
| -rw-r--r-- | hosts/richese/default.nix | 5 | ||||
| -rw-r--r-- | hosts/saturn/default.nix | 5 | ||||
| -rw-r--r-- | hosts/uranus/default.nix | 5 |
10 files changed, 34 insertions, 8 deletions
diff --git a/hosts/arrakis/default.nix b/hosts/arrakis/default.nix index f8e5fa6..a55b1fc 100644 --- a/hosts/arrakis/default.nix +++ b/hosts/arrakis/default.nix @@ -18,6 +18,7 @@ extraInstallCommands = '' ${pkgs.rsync}/bin/rsync -av --delete /efiboot/efi1/ /efiboot/efi2 ''; + memtest86.enable = true; }; timeout = 3; }; diff --git a/hosts/darkstar/default.nix b/hosts/darkstar/default.nix index 5ee2137..60cb704 100644 --- a/hosts/darkstar/default.nix +++ b/hosts/darkstar/default.nix @@ -16,6 +16,7 @@ extraInstallCommands = '' ${pkgs.rsync}/bin/rsync -av --delete /efiboot/efi1/ /efiboot/efi2 ''; + memtest86.enable = true; }; timeout = 3; }; diff --git a/hosts/fangorn/default.nix b/hosts/fangorn/default.nix index e0f0f2d..a79c37d 100644 --- a/hosts/fangorn/default.nix +++ b/hosts/fangorn/default.nix @@ -3,7 +3,10 @@ kernelPackages = pkgs.linuxPackages_6_17; loader = { efi.canTouchEfiVariables = true; - systemd-boot.enable = true; + systemd-boot = { + enable = true; + memtest86.enable = true; + }; timeout = 3; }; supportedFilesystems = [ "zfs" ]; diff --git a/hosts/ginaz/default.nix b/hosts/ginaz/default.nix index 9ee5950..9c46040 100644 --- a/hosts/ginaz/default.nix +++ b/hosts/ginaz/default.nix @@ -4,7 +4,10 @@ kernelPackages = pkgs.linuxPackages_6_17; loader = { efi.canTouchEfiVariables = true; - systemd-boot.enable = true; + systemd-boot = { + enable = true; + memtest86.enable = true; + }; timeout = 3; }; supportedFilesystems = [ "zfs" ]; diff --git a/hosts/jupiter/default.nix b/hosts/jupiter/default.nix index c023564..f2e607b 100644 --- a/hosts/jupiter/default.nix +++ b/hosts/jupiter/default.nix @@ -7,7 +7,10 @@ kernelPackages = pkgs.linuxPackages_6_17; loader = { efi.canTouchEfiVariables = true; - systemd-boot.enable = true; + systemd-boot = { + enable = true; + memtest86.enable = true; + }; timeout = 3; }; supportedFilesystems = [ "zfs" ]; diff --git a/hosts/kaitain/default.nix b/hosts/kaitain/default.nix index 157945f..febb671 100644 --- a/hosts/kaitain/default.nix +++ b/hosts/kaitain/default.nix @@ -4,7 +4,10 @@ kernelPackages = pkgs.linuxPackages_6_17; loader = { efi.canTouchEfiVariables = true; - systemd-boot.enable = true; + systemd-boot = { + enable = true; + memtest86.enable = true; + }; timeout = 3; }; supportedFilesystems = [ "zfs" ]; diff --git a/hosts/neptune/default.nix b/hosts/neptune/default.nix index 7ce3ad8..1f96850 100644 --- a/hosts/neptune/default.nix +++ b/hosts/neptune/default.nix @@ -7,7 +7,10 @@ kernelPackages = pkgs.linuxPackages_6_17; loader = { efi.canTouchEfiVariables = true; - systemd-boot.enable = true; + systemd-boot = { + enable = true; + memtest86.enable = true; + }; timeout = 3; }; supportedFilesystems = [ "zfs" ]; diff --git a/hosts/richese/default.nix b/hosts/richese/default.nix index d3fc348..3575ae4 100644 --- a/hosts/richese/default.nix +++ b/hosts/richese/default.nix @@ -2,7 +2,10 @@ boot = { initrd.kernelModules = [ "zfs" ]; kernelPackages = pkgs.linuxPackages_6_17; - loader.grub.enable = true; + loader.grub = { + enable = true; + memtest86.enable = true; + }; supportedFilesystems = [ "zfs" ]; zfs = { devNodes = "/dev/disk/by-label"; diff --git a/hosts/saturn/default.nix b/hosts/saturn/default.nix index 133b09a..ad0a593 100644 --- a/hosts/saturn/default.nix +++ b/hosts/saturn/default.nix @@ -7,7 +7,10 @@ kernelPackages = pkgs.linuxPackages_6_17; loader = { efi.canTouchEfiVariables = true; - systemd-boot.enable = true; + systemd-boot = { + enable = true; + memtest86.enable = true; + }; timeout = 3; }; supportedFilesystems = [ "zfs" ]; diff --git a/hosts/uranus/default.nix b/hosts/uranus/default.nix index 102d5a4..aca697c 100644 --- a/hosts/uranus/default.nix +++ b/hosts/uranus/default.nix @@ -7,7 +7,10 @@ kernelPackages = pkgs.linuxPackages_6_17; loader = { efi.canTouchEfiVariables = true; - systemd-boot.enable = true; + systemd-boot = { + enable = true; + memtest86.enable = true; + }; timeout = 3; }; supportedFilesystems = [ "zfs" ]; |
