10 lines
192 B
Nix
10 lines
192 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
# just classic DHCP, wired only
|
|
networking.networkmanager.enable = false;
|
|
networking.useDHCP = true;
|
|
|
|
# EurKey layout
|
|
services.xserver.xkb.layout = "eu";
|
|
}
|