Files
system-config/system/hosts/mcp/zfs.nix
2025-03-02 14:35:06 -08:00

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" ];
}