dotfiles/config/headless.nix

12 lines
230 B
Nix

{ config, pkgs, inputs, ... }: {
imports = [ ./shared.nix ];
# Bootloader.
boot.loader.grub.enable = true;
boot.loader.grub.device = "/dev/sda";
boot.loader.grub.useOSProber = true;
system.stateVersion = "24.05";
}