mirror of
https://codeberg.org/leana8959/.files.git
synced 2025-12-06 14:49:14 +00:00
20 lines
465 B
Nix
20 lines
465 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"
|
|
];
|
|
|
|
# I have learned my lesson
|
|
# NEVER set this to true. It would change the password to ! and you can't login
|
|
# users.mutableUsers = false;
|
|
}
|