mirror of
https://github.com/nix-community/dream2nix.git
synced 2024-12-15 09:42:08 +03:00
24 lines
386 B
Nix
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;
|
|
};
|
|
}
|