infra/_archive/environments/fhs/vscode.nix

38 lines
559 B
Nix
Raw Normal View History

2022-10-31 11:04:38 +01:00
{ pkgs ? import <nixpkgs> { } }:
2018-05-24 01:28:33 +02:00
(pkgs.buildFHSUserEnv {
name = "everydayFHS";
2022-10-31 11:04:38 +01:00
targetPkgs = pkgs:
(with pkgs; [
which
2018-05-24 01:28:33 +02:00
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
]);
2022-10-31 11:04:38 +01:00
multiPkgs = pkgs: (with pkgs; [ ]);
2018-05-24 01:28:33 +02:00
profile = ''
export SHELL=/bin/zsh
'';
# FIXME runScript = "$SHELL";
}).env