fix(stolas): suspend from disk and wifi suspend

This commit is contained in:
Tim Schubert 2025-07-27 00:21:39 +02:00
parent b12aac6421
commit 618a4b3a73
No known key found for this signature in database

View file

@ -23,7 +23,12 @@
pkiBundle = "/var/lib/sbctl";
};
kernelModules = [ "kvm-amd" ];
extraModulePackages = [ pkgs.linuxPackages.v4l2loopback ];
# Hopefully fixes suspend issues with wifi card
kernelPackages = pkgs.linuxPackages_latest;
kernelParams = [
"resume=UUID=81dfbfa5-d578-479c-b11c-3ee5abd6848a"
];
extraModulePackages = [ config.boot.kernelPackages.v4l2loopback ];
# Lanzaboote currently replaces the systemd-boot module.
# This setting is usually set to true in configuration.nix
# generated at installation time. So we force it to false
@ -205,7 +210,6 @@
"wireshark"
"paperless"
];
shell = "/run/current-system/sw/bin/zsh";
};
};
};