tix/flake.nix

12 lines
242 B
Nix
Raw Normal View History

2024-01-02 09:02:41 +00:00
{
description = "A testing library for nix";
outputs = { self, nixpkgs }:
let
system = "x86_64-linux";
pkgs = import nixpkgs { inherit system; };
testing = import ./testing/. { inherit pkgs; };
in
testing;
}