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