mirror of
https://github.com/gensokyo-zone/infrastructure.git
synced 2026-02-09 12:29:19 -08:00
system: ZFS minimum kernel
This commit is contained in:
parent
f7d156b88c
commit
3bc51e5ecb
1 changed files with 1 additions and 1 deletions
|
|
@ -1,7 +1,7 @@
|
|||
{ config, lib, pkgs, ... }: with lib;
|
||||
|
||||
{
|
||||
boot.kernelPackages = mkIf (builtins.getEnv "CI_PLATFORM" == "impure") (mkDefault pkgs.linuxPackages_latest);
|
||||
boot.kernelPackages = mkIf (elem "zfs" config.boot.supportedFilesystems) (mkDefault config.boot.zfs.package.latestCompatibleLinuxPackages);
|
||||
hardware.enableRedistributableFirmware = lib.mkDefault true;
|
||||
boot.tmpOnTmpfs = true;
|
||||
boot.zfs.enableUnstable = mkIf (elem "zfs" config.boot.supportedFilesystems) true;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue