Files
nixos/system/modules/boot.nix

14 lines
266 B
Nix
Raw Normal View History

2026-02-22 19:54:17 +00:00
{ config, pkgs, lib, ... }:
{
boot = {
2026-02-25 00:25:09 +00:00
#kernelParams = ["nohibernate" "ipv6.disable=1"];
#tmp.cleanOnBoot = true;
2026-02-22 19:54:17 +00:00
# supportedFilesystems = ["ntfs"];
loader = {
2026-02-25 00:25:09 +00:00
systemd-boot.enable = true;
efi.canTouchEfiVariables = true;
2026-02-22 19:54:17 +00:00
};
};
}