initial commit with 30% less flair than usual ngl

This commit is contained in:
martyTF 2025-12-15 00:00:26 +01:00
commit 9dc30dc2a0
7 changed files with 197 additions and 0 deletions

26
boot.nix Normal file
View file

@ -0,0 +1,26 @@
{ config, lib, pkgs, ... }:
{
system = {
autoUpgrade = {
enable = false;
allowReboot = false;
};
};
boot = {
loader = {
systemd-boot = {
enable = true;
editor = false;
};
timeout = 3;
efi.canTouchEfiVariables = true;
};
kernelPackages = pkgs.linuxPackages_zen;
kernel = {
sysctl = {
"vm.swappiness" = 10;
};
};
};
}