From ef8aef6205dc222fe6b9919369528942ee7a6bde Mon Sep 17 00:00:00 2001 From: Don Harper Date: Wed, 6 May 2026 17:48:16 -0500 Subject: [PATCH] disable t2 --- flake.nix | 2 +- hosts/harper/hardware-configuration.nix | 5 +++++ hosts/harper2/hardware-configuration.nix | 5 +++++ hosts/nuwww/hardware-configuration.nix | 15 +++++++++++++++ hosts/pihole/hardware-configuration.nix | 15 +++++++++++++++ 5 files changed, 41 insertions(+), 1 deletion(-) create mode 100644 hosts/harper/hardware-configuration.nix create mode 100644 hosts/harper2/hardware-configuration.nix create mode 100644 hosts/nuwww/hardware-configuration.nix create mode 100644 hosts/pihole/hardware-configuration.nix diff --git a/flake.nix b/flake.nix index 5d6c3cc..60e51cb 100644 --- a/flake.nix +++ b/flake.nix @@ -89,7 +89,7 @@ loki = mkNixosSystem { modules = [./hosts/loki]; }; pocket2 = mkNixosSystem { modules = [./hosts/pocket2]; }; smaug = mkNixosSystem { modules = [./hosts/smaug]; }; - t2 = mkNixosSystem { modules = [./hosts/t2]; }; + # t2 = mkNixosSystem { modules = [./hosts/t2]; }; pi1 = mkNixosSystem { modules = [./hosts/pi1]; }; # servers diff --git a/hosts/harper/hardware-configuration.nix b/hosts/harper/hardware-configuration.nix new file mode 100644 index 0000000..1419d56 --- /dev/null +++ b/hosts/harper/hardware-configuration.nix @@ -0,0 +1,5 @@ +{ config, lib, pkgs, modulesPath, ... }: { + imports = []; + boot.loader.systemd-boot.enable = true; + boot.loader.efi.canTouchEfiVariables = true; +} diff --git a/hosts/harper2/hardware-configuration.nix b/hosts/harper2/hardware-configuration.nix new file mode 100644 index 0000000..1419d56 --- /dev/null +++ b/hosts/harper2/hardware-configuration.nix @@ -0,0 +1,5 @@ +{ config, lib, pkgs, modulesPath, ... }: { + imports = []; + boot.loader.systemd-boot.enable = true; + boot.loader.efi.canTouchEfiVariables = true; +} diff --git a/hosts/nuwww/hardware-configuration.nix b/hosts/nuwww/hardware-configuration.nix new file mode 100644 index 0000000..b2d562b --- /dev/null +++ b/hosts/nuwww/hardware-configuration.nix @@ -0,0 +1,15 @@ +{ config, lib, pkgs, modulesPath, ... }: { + imports = []; + boot.loader.systemd-boot.enable = true; + boot.loader.efi.canTouchEfiVariables = true; + + fileSystems."/" = { + device = "/dev/disk/by-uuid/00000000-0000-0000-0000-000000000000"; + fsType = "ext4"; + }; + + fileSystems."/boot" = { + device = "/dev/disk/by-uuid/00000000-0000-0000-0000-000000000001"; + fsType = "vfat"; + }; +} diff --git a/hosts/pihole/hardware-configuration.nix b/hosts/pihole/hardware-configuration.nix new file mode 100644 index 0000000..b2d562b --- /dev/null +++ b/hosts/pihole/hardware-configuration.nix @@ -0,0 +1,15 @@ +{ config, lib, pkgs, modulesPath, ... }: { + imports = []; + boot.loader.systemd-boot.enable = true; + boot.loader.efi.canTouchEfiVariables = true; + + fileSystems."/" = { + device = "/dev/disk/by-uuid/00000000-0000-0000-0000-000000000000"; + fsType = "ext4"; + }; + + fileSystems."/boot" = { + device = "/dev/disk/by-uuid/00000000-0000-0000-0000-000000000001"; + fsType = "vfat"; + }; +}