This commit is contained in:
2025-12-30 16:05:18 +01:00
commit ec12c3826b
5 changed files with 125 additions and 0 deletions

31
devshell.nix Normal file
View File

@@ -0,0 +1,31 @@
{ 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
'';
}