infra/_archive/environments/fhs/vscode.nix

37 lines
507 B
Nix
Raw Normal View History

2023-02-07 18:24:28 +01:00
{pkgs ? import <nixpkgs> {}}:
2018-05-24 01:28:33 +02:00
(pkgs.buildFHSUserEnv {
name = "everydayFHS";
2023-02-07 18:24:28 +01:00
targetPkgs = pkgs: (with pkgs; [
which
gitFull
zsh
file
direnv
2018-05-24 01:28:33 +02:00
2023-02-07 18:24:28 +01:00
xdg_utils
xsel
2018-05-24 01:28:33 +02:00
2023-02-07 18:24:28 +01:00
vscode
2018-05-24 01:28:33 +02:00
2023-02-07 18:24:28 +01:00
# vscode live share
gnome3.gcr
libgnome_keyring3
liburcu
libunwind
lttng-ust
curl
openssl
libkrb5
libuuid
icu
zlib
libsecret
]);
multiPkgs = pkgs: (with pkgs; []);
2018-05-24 01:28:33 +02:00
profile = ''
export SHELL=/bin/zsh
'';
# FIXME runScript = "$SHELL";
2023-02-07 18:24:28 +01:00
})
.env