Merge pull request 'Fixed syntax error during volume configuration' (#4) from development into preproduction

Reviewed-on: ilchub/selfprivacy-nixos-infect#4
pull/7/head
ilchub 2021-03-31 12:06:25 +03:00
commit 8fa293fcde
1 changed files with 1 additions and 1 deletions

View File

@ -130,7 +130,7 @@ EOF
boot.loader.grub.device = "$grubdev";
fileSystems = {
"/" = { device = "$rootfsdev"; fsType = "ext4"; };
"/var" = { device = "/dev/sdb"; fsType = "ext4" };
"/var" = { device = "/dev/sdb"; fsType = "ext4"; };
};
}
EOF