aerial: fix some minor things

This commit is contained in:
41666 2023-12-20 19:00:59 -05:00
parent 2bee635ce3
commit 5a8d68c0cc
5 changed files with 46 additions and 31 deletions

View file

@ -1,4 +1,4 @@
{...}: {
{ pkgs, ... }: {
imports = [
./hardware-configuration.nix
../../client.nix
@ -12,9 +12,10 @@
home-manager.users.noe = import ../../../home-manager/noe/hosts/aerial.nix;
environment.etc."X11/xorg.conf" = {
source = ./xorg.conf;
};
# TODO: ??? X11 is angry
#environment.etc."X11/xorg.conf" = {
# source = ./xorg.conf;
#};
networking.hostName = "aerial";
system.stateVersion = "24.05";
@ -23,4 +24,7 @@
device = "/dev/disk/by-uuid/804c5fa2-cf78-4c18-a956-a5b60ea33619";
fsType = "ext4";
};
networking.firewall.allowedTCPPorts = [ 42069 ];
networking.firewall.allowedUDPPorts = [ 42069 ];
}