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 = { services = {
openssh.openFirewall = true; openssh.openFirewall = true;

View file

@ -25,6 +25,7 @@
fileSystems."/boot" = { fileSystems."/boot" = {
device = "/dev/disk/by-uuid/FBB1-A79D"; device = "/dev/disk/by-uuid/FBB1-A79D";
fsType = "vfat"; fsType = "vfat";
options = ["fmask=0022" "dmask=0022"];
}; };
fileSystems."/data" = { fileSystems."/data" = {
@ -32,7 +33,9 @@
fsType = "ext4"; fsType = "ext4";
}; };
swapDevices = []; swapDevices = [
{device = "/dev/disk/by-uuid/4982538e-5402-44c0-86c6-bf086c856615";}
];
# Enables DHCP on each ethernet and wireless interface. In case of scripted networking # Enables DHCP on each ethernet and wireless interface. In case of scripted networking
# (the default) this is the recommended approach. When using systemd-networkd it's # (the default) this is the recommended approach. When using systemd-networkd it's