Start using Nix as a reproducible build tool

This commit is contained in:
matthewcroughan 2022-07-08 09:51:21 +01:00
parent 36e92765d3
commit 6aa8330dc3
5 changed files with 267 additions and 0 deletions

4
nix/tests/default.nix Normal file
View file

@ -0,0 +1,4 @@
{ pkgs, makeTest, inputs }:
{
vmTest = import ./nixos-module { inherit pkgs makeTest inputs; };
}