feat(host/faunus-ater,host/radix-balthica): use newest possible kernel

This commit is contained in:
Malte Tammena 2024-02-01 11:09:29 +01:00
parent 4221e1a7dc
commit 0ba89f5303
2 changed files with 5 additions and 4 deletions

View file

@ -29,8 +29,8 @@ in {
networking.interfaces.eno1.useDHCP = true;
# === Make sure ZFS works ===
# TODO: Update and think of some automatic way of keeping this up to date.
boot.kernelPackages = pkgs.linuxPackages_5_15;
# Source: https://nixos.wiki/wiki/ZFS
boot.kernelPackages = config.boot.zfs.package.latestCompatibleLinuxPackages;
# === Can't handle this ===
systemd.enableEmergencyMode = false;

View file

@ -1,5 +1,6 @@
{
pkgs,
config,
modulesPath,
...
}: {
@ -15,8 +16,8 @@
settings.ssh.openOutsideVPN = true;
# === Make sure ZFS works ===
# TODO: Update and think of some automatic way of keeping this up to date.
boot.kernelPackages = pkgs.linuxPackages_5_15;
# Source: https://nixos.wiki/wiki/ZFS
boot.kernelPackages = config.boot.zfs.package.latestCompatibleLinuxPackages;
users.users.nixos.openssh.authorizedKeys.keyFiles = [../../users/malte/yubikey.pub];