user rename

This commit is contained in:
müde 2026-02-01 12:23:07 +01:00
parent 1b9e61f630
commit 82631191ea
33 changed files with 36 additions and 36 deletions

View file

@ -0,0 +1,26 @@
{ pkgs, ... }:
{
services.openvscode-server = {
enable = false;
package = pkgs.unstable.openvscode-server;
telemetryLevel = "off";
port = 8542;
host = "127.0.0.1";
withoutConnectionToken = true;
extraPackages = with pkgs; [
nodejs
git
gh
direnv
];
};
networking.firewall.allowedTCPPorts = [
8542
8543
8544
80
1313
5201
];
}