dotfiles/modules/nixos/hardware/server.nix
2023-07-18 02:00:38 +00:00

12 lines
216 B
Nix

{ config, lib, ... }: {
config = lib.mkIf config.server {
# Servers need a bootloader or they won't start
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;
};
}