1
0
Fork 0

Cleanup apollo config

This commit is contained in:
Malte Brandy 2021-12-30 05:28:09 +01:00
parent 1d4f2ba729
commit 383c41bd3a
No known key found for this signature in database
GPG key ID: 226A2D41EF5378C9

View file

@ -24,15 +24,15 @@ in
networking = { networking = {
hostName = "apollo"; hostName = "apollo";
domain = "m-0.eu"; domain = "m-0.eu";
firewall.allowedTCPPorts = [ networkmanager.enable = true;
4713 firewall = {
8123 # Weiterleitung von stream.maralorn.de allowedTCPPorts = [
64738 4713 # pulseaudio
]; ];
firewall.allowedUDPPorts = [ allowedUDPPorts = [
4713 4713 # pulseaudio
64738 ];
]; };
wireguard.interfaces = { wireguard.interfaces = {
m0wire = { m0wire = {
allowedIPsAsRoutes = false; allowedIPsAsRoutes = false;
@ -143,26 +143,25 @@ in
}; };
boot.kernel.sysctl."fs.inotify.max_user_watches" = 204800; boot.kernel.sysctl."fs.inotify.max_user_watches" = 204800;
networking = { networkmanager.enable = true; };
console.keyMap = "neo"; console.keyMap = "neo";
sound.enable = true; sound.enable = true;
hardware = { #hardware = {
opengl = { #opengl = {
enable = true; #enable = true;
driSupport32Bit = true; # for gw2 #driSupport32Bit = true; # for gw2
}; #};
pulseaudio = { #pulseaudio = {
enable = true; #enable = true;
support32Bit = true; #support32Bit = true;
tcp = { #tcp = {
enable = true; #enable = true;
anonymousClients.allowedIpRanges = [ "127.0.0.1" "::1" "192.168.178.0/24" ]; #anonymousClients.allowedIpRanges = [ "127.0.0.1" "::1" "192.168.178.0/24" ];
}; #};
}; #};
}; #};
virtualisation.docker.enable = true; # virtualisation.docker.enable = true;
system.stateVersion = "19.09"; system.stateVersion = "19.09";
} }