dotfiles/config/headless.nix
2024-10-29 20:55:04 -07:00

14 lines
258 B
Nix

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