disko/flake.nix

20 lines
492 B
Nix
Raw Normal View History

2022-08-17 15:53:51 +03:00
{
description = "Description for the project";
inputs.nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
outputs = { self, nixpkgs, ... }: {
lib = import ./. {
inherit (nixpkgs) lib;
};
checks.x86_64-linux = let
pkgs = nixpkgs.legacyPackages.x86_64-linux;
in {
# Run tests: nix flake check -L
nixos-test = pkgs.callPackage ./tests/test.nix {
makeTest = import (pkgs.path + "/nixos/tests/make-test-python.nix");
};
};
};
}