config/profiles/mounts/panorama-zfs.nix

12 lines
257 B
Nix
Raw Normal View History

2024-01-10 21:39:55 +01:00
{ 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 = [ "Panorama" ]; # import on boot
}