dream2nix/examples/path-example/flake.nix

24 lines
386 B
Nix
Raw Normal View History

2022-05-17 13:57:57 +03:00
{
inputs = {
dream2nix.url = "github:nix-community/dream2nix";
};
outputs = {
self,
dream2nix,
} @ inp: let
dream2nix = inp.dream2nix.lib2.init {
systems = ["x86_64-linux"];
config.projectRoot = ./.;
};
in
(dream2nix.makeFlakeOutputs {
source = ./.;
settings = [
];
})
// {
checks = self.packages;
};
}