Files
nixos-at-home/modules/common/system.nix
2026-05-31 10:56:54 +01:00

11 lines
195 B
Nix

{ config, lib, pkgs, ... }:
{
system.stateVersion = "25.11";
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;
services.xserver.xkb.layout = "uk";
}