From e5f49cd89f06fb1ce359872f038a29eaf188c17d Mon Sep 17 00:00:00 2001 From: Zhongheng Liu Date: Sun, 6 Oct 2024 10:59:46 +0300 Subject: [PATCH] feat: add vscode --- home-manager/stvnliu/editors.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/home-manager/stvnliu/editors.nix b/home-manager/stvnliu/editors.nix index 6399574..f548076 100644 --- a/home-manager/stvnliu/editors.nix +++ b/home-manager/stvnliu/editors.nix @@ -11,4 +11,8 @@ programs.nixvim = import ./nixvim; # dependencies for nixvim configuration home.packages = with pkgs; [ripgrep fd]; + programs.vscode = { + enable = true; + package = pkgs.vscode.fhs; + }; }