summaryrefslogtreecommitdiff
path: root/system-profiles/zfs.nix
blob: db7428013cc149a11e127269d24b130c5990d271 (plain)
1
2
3
4
5
6
7
8
9
10
11
{ config, pkgs, ... } : {
  config = {
    boot = {
      kernelPackages = config.boot.zfs.package.latestCompatibleLinuxPackages;
      supportedFilesystems = [ "zfs" ];
      zfs.enableUnstable = true;
    };

    environment.systemPackages = with pkgs; [ httm ];
  };
}