Nixconfigs/systems/selene/volumes.nix
2025-10-31 18:42:30 +01:00

28 lines
527 B
Nix

{ config }:
{
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"
];
};
inherit
(import ../volumebox/mount.nix {
keypath = age.secrets.hetzner-key;
path = "/mnt/sbox";
})
}