From b0bd97336543107496d13051586c69b3025463a5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Leonardo=20Eug=C3=AAnio?= Date: Fri, 9 Feb 2024 19:12:31 -0300 Subject: [PATCH] monolith: add projects mount --- hosts/monolith.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/hosts/monolith.nix b/hosts/monolith.nix index 24588dc..cb8df63 100644 --- a/hosts/monolith.nix +++ b/hosts/monolith.nix @@ -101,6 +101,11 @@ in fsType = "btrfs"; options = [ "nofail" ] ++ btrfs_options ++ btrfs_ssd; }; + fileSystems."/home/lelgenio/projects" = { + device = "/dev/disk/by-label/BTRFS_BIGBOY"; + fsType = "btrfs"; + options = [ "subvol=@projects" "nofail" ] ++ btrfs_options ++ btrfs_ssd; + }; # Enables DHCP on each ethernet and wireless interface. In case of scripted networking # (the default) this is the recommended approach. When using systemd-networkd it's # still possible to use this option, but it's recommended to use it in conjunction