Nixconfigs/systems/selene/volumes.nix
2025-10-12 17:39:55 +02:00

21 lines
393 B
Nix

{
fileSystems."/mnt/volume-hel1-2" = {
device = "/dev/disk/by-id/scsi-0HC_Volume_103422022";
fsType = "ext4";
options = [
"defaults"
"discard"
"nofail"
];
};
fileSystems."/mnt/volume-hel1-1" = {
device = "/dev/disk/by-id/scsi-0HC_Volume_103419450";
fsType = "ext4";
options = [
"defaults"
"discard"
"nofail"
];
};
}