added shell.nix
This commit is contained in:
21
shell.nix
Normal file
21
shell.nix
Normal 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
|
||||
'';
|
||||
}
|
||||
Reference in New Issue
Block a user