user rename
This commit is contained in:
parent
1b9e61f630
commit
82631191ea
33 changed files with 36 additions and 36 deletions
26
nixosConfigurations/muede-pc2/vscode-server.nix
Normal file
26
nixosConfigurations/muede-pc2/vscode-server.nix
Normal 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
|
||||
];
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue