mirror of
https://git.selfprivacy.org/SelfPrivacy/selfprivacy-nixos-infect.git
synced 2024-11-22 12:01:27 +00:00
Added mountpoint definition for volumes
This commit is contained in:
parent
e94a10a4c1
commit
9d6c8cc638
|
@ -127,7 +127,10 @@ EOF
|
|||
{
|
||||
imports = [ <nixpkgs/nixos/modules/profiles/qemu-guest.nix> ];
|
||||
boot.loader.grub.device = "$grubdev";
|
||||
fileSystems."/" = { device = "$rootfsdev"; fsType = "ext4"; };
|
||||
fileSystems = {
|
||||
"/" = { device = "$rootfsdev"; fsType = "ext4"; };
|
||||
"/var" = { device = "/dev/sdb"; fsType = "ext4" };
|
||||
};
|
||||
}
|
||||
EOF
|
||||
|
||||
|
|
Loading…
Reference in a new issue