Debug RasPi conf

This commit is contained in:
Vili Sinervä 2025-01-16 16:14:14 +02:00
parent 43defb4b7d
commit 74b6bcdfd5
No known key found for this signature in database
GPG key ID: DF8FEAF54EFAC996
2 changed files with 4 additions and 2 deletions

View file

@ -171,8 +171,8 @@
users.mutableUsers = false; # Force all user management to happen throught nix-files
boot.loader = {
systemd-boot.enable = true;
efi.canTouchEfiVariables = true;
systemd-boot.enable = pkgs.lib.mkDefault true;
efi.canTouchEfiVariables = pkgs.lib.mkDefault true;
timeout = pkgs.lib.mkDefault 0;
};
}

View file

@ -108,6 +108,8 @@ in
"usb_storage"
];
loader = {
timeout = 5;
systemd-boot.enable = false;
grub.enable = false;
generic-extlinux-compatible.enable = true;
};