diff options
author | Zhongheng Liu <z.liu@outlook.com.gr> | 2024-10-06 10:59:46 +0300 |
---|---|---|
committer | Zhongheng Liu <z.liu@outlook.com.gr> | 2024-10-06 10:59:46 +0300 |
commit | e5f49cd89f06fb1ce359872f038a29eaf188c17d (patch) | |
tree | 975e5e363d8215fdfdbc12cab092d1a56000cd09 | |
parent | 54281863cde927b7d359781c0aa2ec586ae753cf (diff) | |
download | nixos-configuration-e5f49cd89f06fb1ce359872f038a29eaf188c17d.tar.gz nixos-configuration-e5f49cd89f06fb1ce359872f038a29eaf188c17d.tar.bz2 nixos-configuration-e5f49cd89f06fb1ce359872f038a29eaf188c17d.zip |
feat: add vscode
-rw-r--r-- | home-manager/stvnliu/editors.nix | 4 |
1 files changed, 4 insertions, 0 deletions
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; + }; } |