From 0d0d6ebb56c960ea571724e160847015652db0d1 Mon Sep 17 00:00:00 2001 From: Toast Date: Wed, 17 Dec 2025 03:11:42 +0100 Subject: [PATCH] Machines/Archie: mount hard drive --- machines/Archie/hardware-configuration.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/machines/Archie/hardware-configuration.nix b/machines/Archie/hardware-configuration.nix index 8ce6999..cb7bd98 100644 --- a/machines/Archie/hardware-configuration.nix +++ b/machines/Archie/hardware-configuration.nix @@ -54,6 +54,12 @@ fsType = config.fileSystems."/".fsType; options = ["subvolid=5" "ro"]; }; + "/mnt/hdd" = { + # device = "/dev/disk/by-id/ata-SAMSUNG_HD103SI_S1Y5J9CZA19763-part1"; + label = "Archie\\x20HDD"; + fsType = "bcachefs"; + options = ["x-systemd.automount"]; + }; "/mnt/windows" = { device = "/dev/disk/by-uuid/B61AFDAC1AFD6A2F"; fsType = "ntfs3";