From 5953031c9643d566a2b212d40b3c048c18266f5f Mon Sep 17 00:00:00 2001 From: Don Harper Date: Sun, 23 Feb 2025 22:49:13 -0600 Subject: [PATCH] pi1 | update hardware-configuration --- hosts/pi1/hardware-configuration.nix | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/hosts/pi1/hardware-configuration.nix b/hosts/pi1/hardware-configuration.nix index 7a5acb8..9386dbf 100644 --- a/hosts/pi1/hardware-configuration.nix +++ b/hosts/pi1/hardware-configuration.nix @@ -11,10 +11,11 @@ boot.loader.grub.enable = false; boot.loader.generic-extlinux-compatible.enable = true; - fileSystems."/" = - { device = "/dev/disk/by-uuid/44444444-4444-4444-8888-888888888888"; - fsType = "ext4"; - }; + fileSystems."/" = { + device = "/dev/disk/by-label/NIXOS_SD"; + fsType = "ext4"; + options = [ "noatime" ]; + }; swapDevices = [ ];