ZFS: Difference between revisions

imported>Paperdigits
m Make sure you run zfs export if you created your zpool using the nixos installer.
imported>Mohe2015
No edit summary
Line 32: Line 32:
Just add the following to your <code>configuration.nix</code> file:
Just add the following to your <code>configuration.nix</code> file:
<syntaxhighlight lang="nix">
<syntaxhighlight lang="nix">
boot.initrd.supportedFilesystems = ["zfs"]; # boot from zfs
boot.supportedFilesystems = [ "zfs" ];
boot.supportedFilesystems = [ "zfs" ];
</syntaxhighlight>
</syntaxhighlight>