32 lines
405 B
Nix
32 lines
405 B
Nix
{ pkgs }:
|
|
pkgs.mkShell {
|
|
# Add build dependencies
|
|
packages = with pkgs; [
|
|
yazi
|
|
ouch
|
|
asciinema
|
|
posting
|
|
helix
|
|
wget
|
|
httpie
|
|
nushell
|
|
|
|
vscode-langservers-extracted
|
|
markdown-oxide
|
|
marksman
|
|
nil
|
|
nixfmt
|
|
nixd
|
|
systemd-language-server
|
|
];
|
|
|
|
# Add environment variables
|
|
env = { };
|
|
|
|
# Load custom bash code
|
|
shellHook = ''
|
|
nu
|
|
exit 0
|
|
'';
|
|
}
|