19 lines
316 B
Nix
19 lines
316 B
Nix
# https://search.nixos.org/options
|
|
|
|
{ config, pkgs, ... }:
|
|
{
|
|
|
|
networking.hostName = "FCS-Tristan-Nixbook";
|
|
|
|
services.xserver = {
|
|
layout = "gb";
|
|
xkbVariant = "dvorak";
|
|
xkbOptions = "caps:escape";
|
|
};
|
|
|
|
networking.firewall.allowedTCPPorts = [ ];
|
|
|
|
system.stateVersion = "22.11"; # do not change
|
|
|
|
}
|
|
|