🐛 Fix config errors

This commit is contained in:
2025-04-13 11:42:39 +02:00
parent f0ce1f4169
commit a7836ff585
9 changed files with 17 additions and 20 deletions

View File

@ -11,9 +11,12 @@
nixpkgs.overlays = [ outputs.overlays.unstable-packages ];
# Bootloader.
boot.loader = {
systemd-boot.enable = true;
efi.canTouchEfiVariables = true;
boot = {
kernelPackages = pkgs.linuxPackages_latest;
loader = {
systemd-boot.enable = true;
efi.canTouchEfiVariables = true;
};
};
# Define a user account. Don't forget to set a password with 'passwd'.