Start porting nixy config, move some bootloader stuff into the common bootloader.nix.

This commit is contained in:
jay
2025-07-09 07:34:56 -04:00
parent fe0b2ef82d
commit 342710ef9c
6 changed files with 115 additions and 5 deletions

View File

@@ -27,6 +27,7 @@
./services/nix-flatpak.nix
./services/sound.nix
./system/bluetooth.nix
./system/bootloader.nix
./system/environment.nix
./system/locale.nix
./system/networking.nix

View File

@@ -0,0 +1,10 @@
{ pkgs, config, ... }: {
boot = {
loader = {
systemd-boot.enable = true;
efi.canTouchEfiVariables = true;
};
kernelPackages = pkgs.linuxPackages_xanmod_stable;
};
}