28 lines
527 B
Nix
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";
|
|
})
|
|
}
|