.files/nix/configurations/vanadium/nixos/misc.nix

16 lines
321 B
Nix

{
system.stateVersion = "24.11";
boot.loader = {
systemd-boot = {
enable = true;
editor = false;
};
efi.canTouchEfiVariables = true;
};
boot.kernelParams = [
# https://community.frame.work/t/stability-issues-random-crashes-reboots-and-boot-freezes/62675/4
"pcie_aspm=off"
];
}