10 lines
246 B
Nix
10 lines
246 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
boot.supportedFilesystems = [ "zfs" ];
|
|
boot.zfs.forceImportRoot = false;
|
|
# Set up the pool to be imported on boot.
|
|
# Note that mountpoints are managed by ZFS on this system.
|
|
boot.zfs.extraPools = [ "tank" ];
|
|
}
|