added openvscode server to appserver

This commit is contained in:
Geir Okkenhaug Jerstad 2024-08-12 13:45:30 +02:00
parent bc5e0a95e0
commit 1a549ea9f6
3 changed files with 12 additions and 0 deletions

View file

@ -15,6 +15,7 @@
./audiobook.nix ./audiobook.nix
#./ollama.nix #./ollama.nix
./forgejo.nix ./forgejo.nix
./open-vscode-server.nix
]; ];
# Swap zram # Swap zram

View file

@ -0,0 +1,7 @@
{ pkgs, configs, ... }:
{
services.openvscode-server = {
enable = true;
telemetryLevel = "off";
};
}

View file

@ -0,0 +1,4 @@
{ pkgs, configs, ... }:
{
}