Merge remote-tracking branch 'refs/remotes/origin/nixos' into nixos

This commit is contained in:
Moritz Böhme 2024-01-31 10:14:26 +01:00
commit cf47ac19a8
No known key found for this signature in database
GPG key ID: 970C6E89EB0547A9
5 changed files with 151 additions and 143 deletions

View file

@ -2,6 +2,7 @@
# your system. Help is available in the configuration.nix(5) man page
# and in the NixOS manual (accessible by running nixos-help).
{ pkgs
, config
, ...
}:
@ -46,13 +47,12 @@
# sensors
enableAllFirmware = true;
bluetooth.enable = true;
};
boot = {
# KERNEL
kernelPackages = pkgs.linuxPackages_latest;
kernelPackages = config.boot.zfs.package.latestCompatibleLinuxPackages; # NOTE: use latest zfs compatible kernel
# BOOT
supportedFilesystems = [ "zfs" "btrfs" "ntfs" ];