initial commit

This commit is contained in:
Amy de Buitléir 2025-09-05 20:38:39 +01:00
parent 123e584cb5
commit 30cfc01fcb

View file

@ -0,0 +1,27 @@
{
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs";
flake-utils.url = "github:numtide/flake-utils";
hello-nix = {
url = "git+https://codeberg.org/mhwombat/hello-nix";
flake = false;
};
};
outputs = { self, nixpkgs, flake-utils, hello-nix }:
flake-utils.lib.eachDefaultSystem (system:
let
pkgs = import nixpkgs { inherit system; };
in
{
devShells = rec {
default = pkgs.mkShell {
shellHook =
''
PATH=${hello-nix}:$PATH
'';
};
};
}
);
}