This commit is contained in:
Dominic Grimm 2025-07-15 00:07:59 +02:00
commit 53a27e9502
Signed by: dergrimm
SSH key fingerprint: SHA256:0uoWpcqOtkyvQ+ZqBjNYiDqIZY+9s8VeZkkJ/4ryB4E
6 changed files with 179 additions and 0 deletions

36
flake.nix Normal file
View file

@ -0,0 +1,36 @@
{
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixos-25.05";
flake-utils = {
url = "github:/numtide/flake-utils";
};
};
outputs =
{
nixpkgs,
flake-utils,
...
}:
flake-utils.lib.eachDefaultSystem (
system:
let
overlays = [ ];
pkgs = import nixpkgs {
inherit system overlays;
};
packages = import ./pkgs {
inherit pkgs;
};
in
with pkgs;
{
inherit packages;
devShells.default = mkShell {
buildInputs = [ ];
};
}
);
}