feat(template): +avarage

This commit is contained in:
2025-10-28 11:41:26 +00:00
parent d01674e6a4
commit f08bd1e702
4 changed files with 154 additions and 0 deletions

View File

@@ -0,0 +1,28 @@
{
description = "";
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-25.05";
hutil = {
url = "github:hectic-lab/util.nix?ref=fix/postgres-extension";
inputs = {
nixpkgs.follows = "nixpkgs";
};
};
};
outputs = { self, nixpkgs, hutil }:
let
overlays = [ hutil.overlays.default ];
in
hutil.lib.forAllSystemsWithPkgs overlays ({ system, pkgs }:
let
lib = pkgs.lib;
in
{
### DEV SHELL ###
devShells.${system} = {
default = import ./devshell/default.nix { inherit pkgs; };
};
}
);
}