Files
nixos-at-home/modules/common/system.nix

19 lines
360 B
Nix

{ config, lib, pkgs, ... }:
{
system.stateVersion = "25.11";
# GRUB with removable EFI — works for both UEFI and legacy/CSM
boot.loader = {
efi.canTouchEfiVariables = false;
grub = {
enable = true;
device = "nodev";
efiSupport = true;
efiInstallAsRemovable = true;
};
};
services.xserver.xkb.layout = "uk";
}