diff options
| author | Baitinq <[email protected]> | 2022-06-17 21:06:48 +0200 |
|---|---|---|
| committer | Baitinq <[email protected]> | 2022-06-17 21:06:48 +0200 |
| commit | 87f575490244263b0dfe86faa2e528da3cf1d217 (patch) | |
| tree | 277f9196860130bf828072de302316d51c2dda10 | |
| parent | Grub: Remove splash image (diff) | |
| download | nixos-config-87f575490244263b0dfe86faa2e528da3cf1d217.tar.gz nixos-config-87f575490244263b0dfe86faa2e528da3cf1d217.tar.bz2 nixos-config-87f575490244263b0dfe86faa2e528da3cf1d217.zip | |
Added vscode extensions
| -rw-r--r-- | hosts/home.nix | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/hosts/home.nix b/hosts/home.nix index 6240dfa..44f931e 100644 --- a/hosts/home.nix +++ b/hosts/home.nix @@ -31,7 +31,6 @@ in polkit_gnome progress qbittorrent - vscode xorg.xev statix ]; @@ -130,6 +129,14 @@ in ''; }; + vscode = { + enable = true; + mutableExtensionsDir = false; #needed for bug with installing extensions + package = pkgs.vscodium; + extensions = with pkgs.vscode-extensions; [ + esbenp.prettier-vscode + ]; + }; }; home.file = { |