summaryrefslogtreecommitdiff
path: root/os/core/drivers.nix
diff options
context:
space:
mode:
authoradikro <adikro@disroot.org>2026-05-18 15:25:50 +0200
committeradikro <adikro@disroot.org>2026-05-18 15:25:50 +0200
commitc6b6a3e6c702834eac2b633db2ed4c397b4ae113 (patch)
tree4ec03c63fac3c7d0e7caea31cbe9ec1317df8c2f /os/core/drivers.nix
parent62b7ca3cdfff5182daad7f4092b6861bbc93f04c (diff)
set up disko, zfs, clamav aide, backup, nfs, zfs for oci and ups
Diffstat (limited to 'os/core/drivers.nix')
-rw-r--r--os/core/drivers.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/os/core/drivers.nix b/os/core/drivers.nix
index ca5ecc4..d6b2cec 100644
--- a/os/core/drivers.nix
+++ b/os/core/drivers.nix
@@ -39,8 +39,8 @@ in
kernel = lib.mkOption {
type = lib.types.enum [
"stable"
- "unstable"
"zen"
+ "zfs"
"hardened"
];
default = "stable";
@@ -107,7 +107,7 @@ in
"stable" = pkgs.linuxPackages_latest;
"zen" = pkgs.linuxPackages_zen;
"hardened" = pkgs.linuxPackages_hardened;
- # "unstable" = pkgs.linuxPackages.;
+ "zfs" = config.boot.zfs.package.latestCompatibleLinuxPackages;
};
in
kernels.${cfg.kernel} or kernels."stable";