monolith: add a generic data mount
This commit is contained in:
parent
778604cd50
commit
ab00a850fd
|
@ -77,6 +77,11 @@ in
|
||||||
fsType = "btrfs";
|
fsType = "btrfs";
|
||||||
options = [ "subvol=@music" "nofail" ] ++ btrfs_options;
|
options = [ "subvol=@music" "nofail" ] ++ btrfs_options;
|
||||||
};
|
};
|
||||||
|
fileSystems."/home/lelgenio/.local/mount/data" = {
|
||||||
|
device = "/dev/disk/by-label/BTRFS_DATA";
|
||||||
|
fsType = "btrfs";
|
||||||
|
options = [ "subvol=@data" "nofail" ] ++ btrfs_options;
|
||||||
|
};
|
||||||
services.udev.extraRules = ''
|
services.udev.extraRules = ''
|
||||||
ACTION=="add", SUBSYSTEM=="pci", DRIVER=="pcieport", ATTR{power/wakeup}="disabled"
|
ACTION=="add", SUBSYSTEM=="pci", DRIVER=="pcieport", ATTR{power/wakeup}="disabled"
|
||||||
'';
|
'';
|
||||||
|
|
Loading…
Reference in a new issue