summaryrefslogtreecommitdiff
path: root/system-profiles
diff options
context:
space:
mode:
Diffstat (limited to 'system-profiles')
-rw-r--r--system-profiles/zfs.nix7
1 files changed, 7 insertions, 0 deletions
diff --git a/system-profiles/zfs.nix b/system-profiles/zfs.nix
new file mode 100644
index 00000000..5703f7ed
--- /dev/null
+++ b/system-profiles/zfs.nix
@@ -0,0 +1,7 @@
1{ pkgs, ... } : {
2 config.boot = {
3 kernelPackages = pkgs.linuxPackages_5_15;
4 supportedFilesystems = [ "zfs" ];
5 zfs.enableUnstable = true;
6 };
7}