mirror of
https://github.com/nmasur/dotfiles
synced 2024-11-10 02:52:55 +00:00
11 lines
214 B
Nix
11 lines
214 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;
|
|
};
|
|
}
|