11 lines
214 B
Nix
Raw Normal View History

2024-04-20 09:42:06 -04:00
{ config, lib, ... }:
{
2022-10-01 16:24:44 +00:00
config = lib.mkIf config.server {
2022-12-21 14:18:03 -07:00
# Servers need a bootloader or they won't start
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;
};
2022-10-01 16:24:44 +00:00
}