Initial Commit

This commit is contained in:
h3lp
2026-03-06 22:20:32 +02:00
commit f9a5f14176
2 changed files with 164 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
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
htop
];
GREETING = "Hello, Nix!";
shellHook = ''
echo $GREETING | cowsay | lolcat
'';
}