11 lines
256 B
Nix
11 lines
256 B
Nix
{ config, pkgs, lib, ... }:
|
|
{
|
|
# https://search.nixos.org/options?query=services.zfs
|
|
|
|
imports = [ ./common-zfs.nix ];
|
|
|
|
# non legacy-mount
|
|
systemd.services.zfs-mount.enable = true; # default
|
|
boot.zfs.extraPools = [ "Meconium" ]; # import on boot
|
|
}
|