first commit

This commit is contained in:
2026-02-24 14:03:16 -05:00
commit 75504d20cd
4 changed files with 51 additions and 0 deletions

8
hello/default.nix Normal file
View File

@@ -0,0 +1,8 @@
let
nixpkgs = fetchTarball "https://github.com/NixOS/nixpkgs/tarball/nixos-25.11";
pkgs = import nixpkgs { config = {}; overlays = []; };
in
{
hello = pkgs.callPackage ./hello.nix { };
icat = pkgs.callPackage ./icat.nix { };
}