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

23 lines
498 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"})
}