summaryrefslogtreecommitdiff
path: root/system-profiles/zfs.nix
blob: 29f08d04b3045dfb0f70ec1911874bac0f1ea3c5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
{ pkgs, lib, ... } : {
  config = {
    boot = {
      kernelPackages = pkgs.linuxPackages_6_12;
      zfs.package = pkgs.zfs_unstable;

      supportedFilesystems.zfs = true;
    };

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