This repository has been archived on 2023-08-08. You can view files and clone it, but cannot push or open issues or pull requests.
nil/modules/system/boot.nix
James Patrick 94613c579e Refactor
2022-03-24 00:00:26 -04:00

21 lines
470 B
Nix

{ config, lib, pkgs, ... }:
let cfg = config.this.systems.boot;
in with lib; {
options.this.systems.boot.enable = mkOption {
default = true;
type = with types; bool;
description = "Is there a physical power button?";
};
config = mkIf cfg.enable {
boot = {
# Enable bootloader & clear /tmp on boot.
cleanTmpDir = true;
loader = {
systemd-boot.enable = true;
efi.canTouchEfiVariables = true;
};
};
};
}