Files
nixos/system/modules/boot.nix
2026-02-25 00:25:09 +00:00

14 lines
266 B
Nix

{ config, pkgs, lib, ... }:
{
boot = {
#kernelParams = ["nohibernate" "ipv6.disable=1"];
#tmp.cleanOnBoot = true;
# supportedFilesystems = ["ntfs"];
loader = {
systemd-boot.enable = true;
efi.canTouchEfiVariables = true;
};
};
}