mirror of
https://git.selfprivacy.org/SelfPrivacy/selfprivacy-nixos-infect.git
synced 2025-02-16 14:24:42 +00:00
Merge pull request 'Fixed syntax error during volume configuration' (#4) from development into preproduction
Reviewed-on: https://git.selfprivacy.org/ilchub/selfprivacy-nixos-infect/pulls/4
This commit is contained in:
commit
8fa293fcde
|
@ -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