From 9359b99b8aaa3a7a450d04c46a10551800e5a448 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Leonardo=20Eug=C3=AAnio?= Date: Tue, 29 Nov 2022 15:48:23 -0300 Subject: [PATCH] monolith move music to hard drive --- hosts/monolith.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/hosts/monolith.nix b/hosts/monolith.nix index b99c52c..d38543e 100644 --- a/hosts/monolith.nix +++ b/hosts/monolith.nix @@ -53,6 +53,11 @@ in { fsType = "btrfs"; options = [ "subvol=@torrents" "nofail" ] ++ btrfs_options; }; + fileSystems."/home/lelgenio/Música" = { + device = "/dev/disk/by-label/BTRFS_DATA"; + fsType = "btrfs"; + options = [ "subvol=@music" "nofail" ] ++ btrfs_options; + }; services.udev.extraRules = '' ACTION=="add", SUBSYSTEM=="pci", DRIVER=="pcieport", ATTR{power/wakeup}="disabled" '';