12 lines
230 B
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";
|
|
}
|