add work laptop

This commit is contained in:
tristan 2023-04-15 12:46:15 +01:00
parent f96e27fecd
commit c0466602b7
8 changed files with 83 additions and 20 deletions

23
system/work.nix Normal file
View file

@ -0,0 +1,23 @@
# https://search.nixos.org/options
{ config, pkgs, ... }:
{
networking.hostName = "FCS-Tristan-Nixbook";
console = {
font = "Lat2-Terminus16";
useXkbConfig = true;
};
services.xserver = {
layout = "gb";
xkbVariant = "dvorak";
xkbOptions = "caps:escape";
};
networking.firewall.allowedTCPPorts = [ ];
system.stateVersion = "22.11"; # do not change
}