49 lines
941 B
Nix
49 lines
941 B
Nix
{ ... }:
|
|
{
|
|
fileSystems = {
|
|
# Games and such
|
|
"/mnt/Linux1" = {
|
|
device = "/dev/disk/by-label/Linux1";
|
|
fsType = "btrfs";
|
|
options = [
|
|
"nofail"
|
|
"nosuid"
|
|
];
|
|
};
|
|
"/mnt/Linux2" = {
|
|
device = "/dev/disk/by-label/Linux2";
|
|
fsType = "btrfs";
|
|
options = [
|
|
"nofail"
|
|
"nosuid"
|
|
];
|
|
};
|
|
"/mnt/Linux3" = {
|
|
device = "/dev/disk/by-label/Linux3";
|
|
fsType = "btrfs";
|
|
options = [
|
|
"nofail"
|
|
"nosuid"
|
|
];
|
|
};
|
|
"/mnt/Linux4" = {
|
|
device = "/dev/disk/by-label/Linux4";
|
|
fsType = "btrfs";
|
|
options = [
|
|
"nofail"
|
|
"nosuid"
|
|
];
|
|
};
|
|
|
|
# Bulk storage mounts
|
|
"/persist/var/lib/libvirt" = {
|
|
device = "/dev/disk/by-uuid/abf78669-de2a-4afa-8e62-604f4e4cb355";
|
|
fsType = "btrfs";
|
|
options = [
|
|
"nofail"
|
|
"nosuid"
|
|
"subvol=libvirt"
|
|
];
|
|
};
|
|
};
|
|
}
|