added shell.nix

This commit is contained in:
venus
2025-11-14 08:04:24 +00:00
parent 09ae909cef
commit b45d344d17

21
shell.nix Normal file
View File

@@ -0,0 +1,21 @@
let
nixpkgs = fetchTarball "https://github.com/NixOS/nixpkgs/tarball/nixos-24.05";
pkgs = import nixpkgs { config = {}; overlays = []; };
in
pkgs.mkShellNoCC {
packages = with pkgs; [
cowsay
lolcat
neovim
fish
git
tmux
];
GREETING = "Hello, Nix!";
shellHook = ''
fish
'';
}