Compare commits

...

2 commits

Author SHA1 Message Date
Harald Hoyer d44ef254fa feat: update allowed TCP port in sgx network configuration
This commit updates the allowed TCP port for networking in the SGX configuration file. Instead of hardcoding the port number, it now uses the port specified in the netatalk configuration. This change enables more flexibility in port assignment and reduces potential conflicts.
2024-07-19 11:45:38 +02:00
Harald Hoyer 5615b246b6 feat: Modify keyboard layout in x86_64-linux hardware configuration
The configuration update for the x86_64-linux t15 hardware adds a US layout variant to the existing German keyboard configuration. This change will allow switching between US and German keyboard layouts as per user requirements.
2024-07-19 11:45:24 +02:00
2 changed files with 2 additions and 2 deletions

View file

@ -37,6 +37,6 @@
};
};
networking.firewall.allowedTCPPorts = [ 548 ];
networking.firewall.allowedTCPPorts = [ config.services.netatalk.port ];
networking.firewall.allowPing = true;
}

View file

@ -94,7 +94,7 @@
console.keyMap = "de-latin1-nodeadkeys";
services.xserver.xkb = {
layout = "de";
layout = "de,de+us";
variant = "nodeadkeys";
};