initial config

This commit is contained in:
matiss
2026-04-20 15:08:47 +00:00
commit 8f4daf76b8
27 changed files with 1458 additions and 0 deletions

13
modules/system/boot.nix Normal file
View File

@@ -0,0 +1,13 @@
# ==========================================
# BOOT CONFIGURATION
# ==========================================
{ config, pkgs, ... }:
{
boot.loader.systemd-boot.enable = true;
boot.loader.systemd-boot.configurationLimit = 10;
boot.loader.efi.canTouchEfiVariables = true;
# Use the latest kernel
boot.kernelPackages = pkgs.linuxPackages_latest;
}