19 lines
385 B
Nix
19 lines
385 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
# Kernel
|
|
boot.kernelPackages = pkgs.linuxPackages_6_16;
|
|
|
|
# Boot
|
|
boot.loader.systemd-boot.enable = true;
|
|
boot.loader.systemd-boot.configurationLimit = 10;
|
|
# boot.loader.efi.canTouchEfiVariables = true;
|
|
# boot.kernelParams = [ "quiet" ];
|
|
boot.initrd.systemd = {
|
|
enable = true;
|
|
# network.enable = true;
|
|
};
|
|
|
|
# Swap
|
|
zramSwap.enable = true;
|
|
}
|