From 77177fe7e463dc57a362f4bf8e8da1f66fc52d7f Mon Sep 17 00:00:00 2001 From: alejandro-angulo Date: Sat, 20 Dec 2025 18:48:33 -0800 Subject: [PATCH 1/3] Update gospel's key --- secrets/secrets.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/secrets/secrets.nix b/secrets/secrets.nix index 2fc1e28..6331224 100644 --- a/secrets/secrets.nix +++ b/secrets/secrets.nix @@ -5,7 +5,7 @@ let tmp = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAICJ7IsNxP/wa3X8isEp8Js7yVgk3gX2ud7EClvZClDpS"; machines = { - gospel = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIGDzjXVoQEfO9JIcFbp56EvQ0oBdr9Cmhxp4z0ih+ZEZ"; + gospel = "ssh-ed25519 ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIBPA7bvtNIQqEvHYLrlcJdMQbYXdgpTPaDnHP1SZf6tz"; node = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIETLBnc8kJokmFiA28BaSYpeE7flY1W0SM5C1pWv/tOv"; pi4 = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIK9fnNXzEmDdmtR+KWj/M9vQioFR0s/4jMnIkUFcj8As"; proxy = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIAf6Z7SZEOH3H51T/GPIc/B0OpbaydM5l2PP3nMnwpFl"; From 486c24d9c278e266eefecca06010e735406aca94 Mon Sep 17 00:00:00 2001 From: alejandro-angulo Date: Sat, 20 Dec 2025 19:00:15 -0800 Subject: [PATCH 2/3] Fix paths --- systems/x86_64-linux/gospel/hardware-configuration.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/systems/x86_64-linux/gospel/hardware-configuration.nix b/systems/x86_64-linux/gospel/hardware-configuration.nix index ea358c9..fd34103 100644 --- a/systems/x86_64-linux/gospel/hardware-configuration.nix +++ b/systems/x86_64-linux/gospel/hardware-configuration.nix @@ -24,12 +24,12 @@ boot.kernelModules = [ "kvm-intel" ]; fileSystems."/" = { - device = "nixos"; + device = "dev/disk/by-uuid/6119992c-19b7-42e6-8480-8bedccc23fc7 "; fsType = "bcachefs"; }; fileSystems."/boot" = { - device = "/dev/disk/by-uuid/3C7C-03C4"; + device = "/dev/disk/by-uuid/8921-299E"; fsType = "fat32"; }; From b586fb9e079fc9d93baa6416c7c066762e5cf30c Mon Sep 17 00:00:00 2001 From: alejandro-angulo Date: Sat, 20 Dec 2025 19:20:37 -0800 Subject: [PATCH 3/3] Fix fstab --- systems/x86_64-linux/gospel/hardware-configuration.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/systems/x86_64-linux/gospel/hardware-configuration.nix b/systems/x86_64-linux/gospel/hardware-configuration.nix index fd34103..80e8d94 100644 --- a/systems/x86_64-linux/gospel/hardware-configuration.nix +++ b/systems/x86_64-linux/gospel/hardware-configuration.nix @@ -24,13 +24,13 @@ boot.kernelModules = [ "kvm-intel" ]; fileSystems."/" = { - device = "dev/disk/by-uuid/6119992c-19b7-42e6-8480-8bedccc23fc7 "; + device = "/dev/disk/by-uuid/6119992c-19b7-42e6-8480-8bedccc23fc7 "; fsType = "bcachefs"; }; fileSystems."/boot" = { device = "/dev/disk/by-uuid/8921-299E"; - fsType = "fat32"; + fsType = "vfat"; }; swapDevices = [ ];