From cdfcd1804f4f2b079e33f17fbf4b09e40b49eaaa Mon Sep 17 00:00:00 2001 From: Sergei Poljanski Date: Thu, 19 Mar 2026 09:22:25 +0200 Subject: [PATCH] volumes automount --- hardware-configuration.nix | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/hardware-configuration.nix b/hardware-configuration.nix index 6acef49..8481282 100644 --- a/hardware-configuration.nix +++ b/hardware-configuration.nix @@ -28,6 +28,18 @@ options = [ "fmask=0077" "dmask=0077" ]; }; + fileSystems."/mnt/arch" = + { device = "/dev/disk/by-uuid/15ae8384-3dfc-4915-9201-66ecfc5f230d"; + fsType = "btrfs"; + options = [ "subvol=@" "nofail" ]; + }; + + fileSystems."/mnt/data" = + { device = "/dev/disk/by-uuid/2323a69f-8c95-484b-919b-a524213a33ca"; + fsType = "ext4"; + options = [ "nofail" ]; + }; + swapDevices = [ ]; nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";