11 lines
206 B
Nix
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";
|
|
}
|