From b260451e0bae0ad9eb98fd93c61902e871b2e8db Mon Sep 17 00:00:00 2001 From: "RingOfStorms (Joshua Bell)" Date: Thu, 18 Dec 2025 17:44:45 -0600 Subject: [PATCH] update --- hosts/h002/flake.nix | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/hosts/h002/flake.nix b/hosts/h002/flake.nix index 8527a80c..611e588f 100644 --- a/hosts/h002/flake.nix +++ b/hosts/h002/flake.nix @@ -49,9 +49,12 @@ inputs.common.nixosModules.git inputs.common.nixosModules.tmux inputs.common.nixosModules.boot_grub - ({ - boot.loader.grub.device = "/dev/sdb"; - }) + ( + { lib, ... }: + { + boot.loader.grub.device = lib.mkForce "/dev/sdb"; + } + ) inputs.common.nixosModules.hardening inputs.common.nixosModules.nix_options inputs.common.nixosModules.no_sleep