feat(host/faunus-ater,host/radix-balthica): use newest possible kernel
This commit is contained in:
parent
4221e1a7dc
commit
0ba89f5303
|
@ -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;
|
||||
|
|
|
@ -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];
|
||||
|
||||
|
|
Loading…
Reference in a new issue