add: all files

This commit is contained in:
Charles
2025-03-23 19:10:22 -07:00
parent 05c64c5342
commit 06525e28aa
2 changed files with 65 additions and 8 deletions
+24
View File
@@ -0,0 +1,24 @@
let
nixpkgs = fetchTarball "https://github.com/NixOS/nixpkgs/tarball/nixos-24.05";
pkgs = import nixpkgs { config = {}; overlays = []; };
build = pkgs.callPackage ./build.nix { };
in
pkgs.mkShellNoCC {
packages = with pkgs; [
cowsay
lolcat
build
];
}