dream2nix/examples/path-example/flake.nix
2022-05-17 12:57:57 +02:00

24 lines
386 B
Nix

{
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;
};
}