dotfiles/config/headless.nix
2024-09-17 22:56:37 -07:00

11 lines
206 B
Nix

{ config, pkgs, inputs, ... }: {
imports = [ ./shared.nix ];
# Bootloader.
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;
system.stateVersion = "24.05";
}