gwydion: move ~/.cache to ssd

This commit is contained in:
Jez Cope 2023-06-30 21:13:21 +01:00
parent cec13a6984
commit 196966dcb5
1 changed files with 7 additions and 1 deletions

View File

@ -53,10 +53,16 @@
options = [ "subvol=@data/docker" "compress=zstd" ];
};
fileSystems."/home/jez/.cache" = {
device = "/dev/gwydion-vg/fastdata";
fsType = "btrfs";
options = [ "subvol=@data/home/jez/.cache" "compress=zstd" ];
};
fileSystems."/home/jez/.config" = {
device = "/dev/gwydion-vg/fastdata";
fsType = "btrfs";
options = [ "subvol=@data/home/jez/.config" ];
options = [ "subvol=@data/home/jez/.config" "compress=zstd" ];
};
fileSystems."/home/jez/Games" = {