nix/system/work/system.nix
2023-04-15 19:19:24 +01:00

21 lines
350 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
boot.bootspec.enable = true;
}