mirror of
https://git.selfprivacy.org/SelfPrivacy/selfprivacy-nixos-infect.git
synced 2024-11-22 12:01:27 +00:00
Fixed syntax error during volume configuration
This commit is contained in:
parent
cfdee451dd
commit
5d2b8a6924
|
@ -130,7 +130,7 @@ EOF
|
||||||
boot.loader.grub.device = "$grubdev";
|
boot.loader.grub.device = "$grubdev";
|
||||||
fileSystems = {
|
fileSystems = {
|
||||||
"/" = { device = "$rootfsdev"; fsType = "ext4"; };
|
"/" = { device = "$rootfsdev"; fsType = "ext4"; };
|
||||||
"/var" = { device = "/dev/sdb"; fsType = "ext4" };
|
"/var" = { device = "/dev/sdb"; fsType = "ext4"; };
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
EOF
|
EOF
|
||||||
|
|
Loading…
Reference in a new issue