share workstation config

This commit is contained in:
Christoph Cullmann 2025-07-05 21:01:35 +02:00
parent bafa89a265
commit 1e0474b124
No known key found for this signature in database
3 changed files with 16 additions and 14 deletions

10
share/workstation.nix Normal file
View file

@ -0,0 +1,10 @@
{ config, pkgs, ... }:
{
# just classic DHCP, wired only
networking.networkmanager.enable = false;
networking.useDHCP = true;
# EurKey layout
services.xserver.xkb.layout = "eu";
}