From 33cf7ed43501ef312d9bb367e1bb9bd067f4a5de Mon Sep 17 00:00:00 2001 From: Natsu Kagami Date: Wed, 8 Nov 2023 11:50:46 +0100 Subject: [PATCH] Mount Projects on boot --- nki-home/hardware-configuration.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/nki-home/hardware-configuration.nix b/nki-home/hardware-configuration.nix index b37eeb0..0b5e484 100644 --- a/nki-home/hardware-configuration.nix +++ b/nki-home/hardware-configuration.nix @@ -19,6 +19,12 @@ device = "/dev/disk/by-uuid/32a74827-4624-43ef-b066-b52e1f11793d"; fsType = "ext4"; }; + fileSystems."/home/nki/Projects" = + { + device = "/dev/disk/by-uuid/025cb533-e21b-47f2-b7d5-322b7b95b831"; + fsType = "btrfs"; + options = [ "compress=zstd" ]; + }; fileSystems."/boot" = {