From ee9f96d563a2056d9599e2e2a0812dd5709b8195 Mon Sep 17 00:00:00 2001 From: osbm Date: Mon, 13 Jan 2025 23:47:00 +0300 Subject: [PATCH] move vscode server --- hosts/tartarus/configuration.nix | 2 +- modules/common-packages.nix | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/hosts/tartarus/configuration.nix b/hosts/tartarus/configuration.nix index 58f21f7..39038d0 100644 --- a/hosts/tartarus/configuration.nix +++ b/hosts/tartarus/configuration.nix @@ -20,7 +20,7 @@ in { boot.binfmt.emulatedSystems = ["aarch64-linux"]; nix.settings.extra-platforms = config.boot.binfmt.emulatedSystems; - services.vscode-server.enable = true; + home-manager.useGlobalPkgs = true; home-manager.useUserPackages = true; diff --git a/modules/common-packages.nix b/modules/common-packages.nix index 9c9e5af..d812f0c 100644 --- a/modules/common-packages.nix +++ b/modules/common-packages.nix @@ -100,4 +100,5 @@ }; }; + services.vscode-server.enable = true; }