Typo in mirror.nix

This commit is contained in:
Raphaël Numbus
2026-01-25 10:24:33 +01:00
parent 5887446702
commit 490fa704b8
+11 -12
View File
@@ -30,19 +30,18 @@
};
};
};
mdadm = {
raid1 = {
type = "mdadm";
level = 1;
mdadm = {
raid1 = {
type = "mdadm";
level = 1;
content = {
type = "luks";
name = "crypted-mirror";
settings.keyFile = "/etc/secrets/disks/mirror";
content = {
type = "luks";
name = "crypted-mirror";
settings.keyFile = "/etc/secrets/disks/mirror";
content = {
type = "filesystem";
format = "xfs";
mountpoint = "/mnt/data";
};
type = "filesystem";
format = "xfs";
mountpoint = "/mnt/data";
};
};
};