vanadium: rename mount point to "four"

This commit is contained in:
Primrose 2025-02-01 13:49:27 +01:00
parent fa9b4508d5
commit aba2ee6df5
Signed by: primrose
GPG key ID: 4E887A4CA9714ADA
6 changed files with 17 additions and 17 deletions

View file

@ -48,17 +48,17 @@
};
environment.etc."crypttab".text = ''
seagate /dev/disk/by-uuid/f68b6704-670a-4050-b032-2d553070139a ${config.age.secrets.seagate_pwd.path} noauto
four /dev/disk/by-uuid/f68b6704-670a-4050-b032-2d553070139a ${config.age.secrets.four_pwd.path} noauto
'';
systemd.mounts = [
{
what = "/dev/mapper/seagate";
where = "/mnt/seagate";
requires = [ "systemd-cryptsetup@seagate.service" ];
after = [ "systemd-cryptsetup@seagate.service" ];
what = "/dev/mapper/four";
where = "/mnt/four";
requires = [ "systemd-cryptsetup@four.service" ];
after = [ "systemd-cryptsetup@four.service" ];
unitConfig = {
PropagatesStopTo = [ "systemd-cryptsetup@seagate.service" ];
PropagatesStopTo = [ "systemd-cryptsetup@four.service" ];
};
}
];