14 lines
266 B
Nix
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;
|
|
};
|
|
};
|
|
}
|