LVM: Difference between revisions

imported>Novafacing
m Command for creating a logical volume incorrect, named LV requires -n.
imported>Mrmaxmeier
m fixed syntax
Line 24: Line 24:


<syntaxHighlight lang=nix>
<syntaxHighlight lang=nix>
  filesystems."/home" = {
  fileSystems."/home" = {
   "device": "/dev/pool/home";
   device = "/dev/pool/home";
   "fsType": "ext4";
   fsType = "ext4";
}
}
</syntaxHighlight>
</syntaxHighlight>