drvs: add vscode FHsS
This commit is contained in:
parent
d23b4bbe41
commit
91b02576b1
1 changed files with 38 additions and 0 deletions
38
derivations/fhs/vscode.nix
Normal file
38
derivations/fhs/vscode.nix
Normal file
|
@ -0,0 +1,38 @@
|
||||||
|
{ pkgs ? import <nixpkgs> {} }:
|
||||||
|
|
||||||
|
(pkgs.buildFHSUserEnv {
|
||||||
|
name = "everydayFHS";
|
||||||
|
targetPkgs = pkgs: (with pkgs;
|
||||||
|
[ which
|
||||||
|
gitFull
|
||||||
|
zsh
|
||||||
|
file
|
||||||
|
direnv
|
||||||
|
|
||||||
|
xdg_utils
|
||||||
|
xsel
|
||||||
|
|
||||||
|
vscode
|
||||||
|
|
||||||
|
# vscode live share
|
||||||
|
gnome3.gcr
|
||||||
|
libgnome_keyring3
|
||||||
|
liburcu
|
||||||
|
libunwind
|
||||||
|
lttng-ust
|
||||||
|
curl
|
||||||
|
openssl
|
||||||
|
libkrb5
|
||||||
|
libuuid
|
||||||
|
icu
|
||||||
|
zlib
|
||||||
|
libsecret
|
||||||
|
]);
|
||||||
|
multiPkgs = pkgs: (with pkgs;
|
||||||
|
[
|
||||||
|
]);
|
||||||
|
profile = ''
|
||||||
|
export SHELL=/bin/zsh
|
||||||
|
'';
|
||||||
|
# FIXME runScript = "$SHELL";
|
||||||
|
}).env
|
Loading…
Add table
Add a link
Reference in a new issue