VFIO fixes and malachite things
This commit is contained in:
parent
c4e46d0a28
commit
53ef1f28c6
3 changed files with 24 additions and 10 deletions
|
@ -20,22 +20,22 @@
|
|||
"/" =
|
||||
{ device = "/dev/disk/by-uuid/8e30bb30-eacf-4d7d-bcec-c2b39982de13";
|
||||
fsType = "btrfs";
|
||||
options = [ "subvol=nix" ];
|
||||
options = [ "subvol=nix" "compress=zstd" ];
|
||||
};
|
||||
"/home" = {
|
||||
device = "/dev/disk/by-uuid/8e30bb30-eacf-4d7d-bcec-c2b39982de13";
|
||||
fsType = "btrfs";
|
||||
options = [ "subvol=homes/stitchymain" ];
|
||||
options = [ "subvol=homes/stitchymain" "compress=zstd" ];
|
||||
};
|
||||
"/nix/store" = {
|
||||
device = "/dev/disk/by-uuid/8e30bb30-eacf-4d7d-bcec-c2b39982de13";
|
||||
fsType = "btrfs";
|
||||
options = [ "subvol=store" ];
|
||||
options = [ "subvol=store" "noatime" "compress=zstd" ];
|
||||
};
|
||||
"/persist" = {
|
||||
device = "/dev/disk/by-uuid/8e30bb30-eacf-4d7d-bcec-c2b39982de13";
|
||||
fsType = "btrfs";
|
||||
options = [ "subvol=@persist" ];
|
||||
options = [ "subvol=@persist" "compress=zstd" ];
|
||||
};
|
||||
"/boot" = {
|
||||
device = "/dev/disk/by-uuid/CB12-5062";
|
||||
|
@ -44,27 +44,27 @@
|
|||
"/home/stitchynyan/Music" = {
|
||||
device = "/dev/disk/by-uuid/feb8239f-5d09-4184-8e46-52185beaa040";
|
||||
fsType = "btrfs";
|
||||
options = [ "subvol=music/stitchtunes" "x-systemd.automount" ];
|
||||
options = [ "subvol=music/stitchtunes" "compress=zstd" "x-systemd.automount" ];
|
||||
};
|
||||
"/home/stitchynyan/Pictures" = {
|
||||
device = "/dev/disk/by-uuid/feb8239f-5d09-4184-8e46-52185beaa040";
|
||||
fsType = "btrfs";
|
||||
options = [ "subvol=pictures/stitchpics" "x-systemd.automount" ];
|
||||
options = [ "subvol=pictures/stitchpics" "compress=zstd" "x-systemd.automount" ];
|
||||
};
|
||||
"/home/stitchynyan/Programs/Steam" = {
|
||||
device = "/dev/disk/by-uuid/feb8239f-5d09-4184-8e46-52185beaa040";
|
||||
fsType = "btrfs";
|
||||
options = [ "subvol=games/stitchgames" "x-systemd.automount" ];
|
||||
options = [ "subvol=games/stitchgames" "compress=zstd" "x-systemd.automount" ];
|
||||
};
|
||||
"/home/stitchynyan/Videos" = {
|
||||
device = "/dev/disk/by-uuid/feb8239f-5d09-4184-8e46-52185beaa040";
|
||||
fsType = "btrfs";
|
||||
options = [ "subvol=videos/stitchshows" "x-systemd.automount" ];
|
||||
options = [ "subvol=videos/stitchshows" "compress=zstd" "x-systemd.automount" ];
|
||||
};
|
||||
"/home/stitchynyan/VirtualMachines" = {
|
||||
device = "/dev/disk/by-uuid/feb8239f-5d09-4184-8e46-52185beaa040";
|
||||
fsType = "btrfs";
|
||||
options = [ "subvol=virtualmachines/stitchvms" "x-systemd.automount" ];
|
||||
options = [ "subvol=virtualmachines/stitchvms" "compress=zstd" "x-systemd.automount" ];
|
||||
};
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue