reorganise

This commit is contained in:
tristan 2023-04-15 13:55:16 +01:00
parent 98af4d5664
commit 744f70fc87
14 changed files with 72 additions and 64 deletions

23
system/zenix/system.nix Normal file
View file

@ -0,0 +1,23 @@
# https://search.nixos.org/options
{ config, pkgs, ... }:
{
networking.hostName = "zenix";
services.xserver = {
layout = "gb";
xkbOptions = "caps:escape";
};
services.openssh.enable = true;
services.tailscale.enable = true;
networking.firewall.checkReversePath = "loose";
networking.firewall.allowedTCPPorts = [ ];
system.stateVersion = "22.11"; # do not change
}