use btrfs for nix store

This commit is contained in:
Noa Aarts 2024-11-26 10:53:48 +01:00
parent 022d8c580f
commit ca7450f55c
Signed by: noa
GPG key ID: 1850932741EFF672

View file

@ -36,6 +36,16 @@
fsType = "vfat"; fsType = "vfat";
}; };
fileSystems."/nix" = {
device = "/dev/disk/by-uuid/b64dfc95-05c7-40bb-879b-9820c84779dc";
fsType = "btrfs";
options = [
"compress=zstd"
"noatime"
"subvol=nix"
];
};
fileSystems."/home/noa/Pictures/library" = { fileSystems."/home/noa/Pictures/library" = {
device = "/dev/disk/by-uuid/93a74173-8719-4be2-86b3-dc80588b9cf8"; device = "/dev/disk/by-uuid/93a74173-8719-4be2-86b3-dc80588b9cf8";
fsType = "ext4"; fsType = "ext4";