disko/flake.nix

21 lines
546 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;
2022-08-25 16:16:26 +03:00
in
2022-08-17 15:53:51 +03:00
# Run tests: nix flake check -L
2022-08-25 16:16:26 +03:00
import ./tests {
inherit pkgs;
2022-08-17 15:53:51 +03:00
makeTest = import (pkgs.path + "/nixos/tests/make-test-python.nix");
eval-config = import (pkgs.path + "/nixos/lib/eval-config.nix");
2022-08-17 15:53:51 +03:00
};
};
}