[openvscode-server] Add conf in laptop | WARNING: Insecure

This commit is contained in:
Florian RICHER 2024-02-17 12:42:26 +01:00
parent d50724a354
commit 2bc8e92e0e
2 changed files with 12 additions and 1 deletions

View file

@ -13,7 +13,7 @@
../../modules/plasma.nix
../../modules/keymaps/fr.nix
../../modules/pipewire.nix
../../modules/openssh.nix
../../modules/openvscode-server.nix
# Include the results of the hardware scan.
./hardware-configuration.nix

View file

@ -0,0 +1,11 @@
{ config, pkgs, ... }:
{
services.openvscode-server = {
enable = true;
host = "0.0.0.0";
user = "florian";
withoutConnectionToken = true;
telemetryLevel = "off";
};
}