Modify like, basically everything idk, probably a lot of secrets and url names and colmena and whatnot

This commit is contained in:
Bun 2025-06-20 20:20:48 -04:00
parent 0ab856b18e
commit b3ba7481d8
107 changed files with 437 additions and 696 deletions

View file

@ -1,19 +1,16 @@
{ lib, pkgs, ... }:
{
imports = [
./grub
./lanzaboote
./limine
./plymouth
./services
./systemd
];
boot = {
kernelPackages = lib.mkDefault pkgs.linuxPackages_latest;
blacklistedKernelModules = [ "pcspkr" ];
kernel.sysctl = {
"vm.max_map_count" = 2147483642;
"kernel.sysrq" = 1;
};
kernel.sysctl."vm.max_map_count" = 2147483642;
kernelPackages = lib.mkDefault pkgs.linuxPackages_latest;
loader.systemd-boot.editor = false;
};
}