summaryrefslogtreecommitdiff
path: root/system-profiles
diff options
context:
space:
mode:
Diffstat (limited to 'system-profiles')
-rw-r--r--system-profiles/zfs.nix10
1 files changed, 6 insertions, 4 deletions
diff --git a/system-profiles/zfs.nix b/system-profiles/zfs.nix
index f7f2a147..db742801 100644
--- a/system-profiles/zfs.nix
+++ b/system-profiles/zfs.nix
@@ -1,8 +1,10 @@
1{ config, pkgs, ... } : { 1{ config, pkgs, ... } : {
2 config.boot = { 2 config = {
3 kernelPackages = config.boot.zfs.package.latestCompatibleLinuxPackages; 3 boot = {
4 supportedFilesystems = [ "zfs" ]; 4 kernelPackages = config.boot.zfs.package.latestCompatibleLinuxPackages;
5 zfs.enableUnstable = true; 5 supportedFilesystems = [ "zfs" ];
6 zfs.enableUnstable = true;
7 };
6 8
7 environment.systemPackages = with pkgs; [ httm ]; 9 environment.systemPackages = with pkgs; [ httm ];
8 }; 10 };