fix(etna): switch back to kernel 6.1

it seems that there is a regression in the network driver in 6.6+,
so can't really use that right now, otherwise the whole pc
freezes when reconnecting to the internet
This commit is contained in:
uku 2024-05-06 12:02:21 +02:00
parent e083eded8b
commit 735fa9d2d6
Signed by: uku
SSH key fingerprint: SHA256:4P0aN6M8ajKukNi6aPOaX0LacanGYtlfjmN+m/sHY/o
2 changed files with 8 additions and 2 deletions

View file

@ -32,7 +32,10 @@ in {
};
};
boot.loader.systemd-boot.enable = true;
boot = {
loader.systemd-boot.enable = true;
kernelPackages = pkgs.linuxPackages_6_1;
};
services = {
openssh.openFirewall = true;