tix/flake.nix

11 lines
239 B
Nix
Raw Normal View History

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