mirror of
https://github.com/nix-community/dream2nix.git
synced 2024-12-26 07:52:43 +03:00
15 lines
247 B
Nix
15 lines
247 B
Nix
|
{
|
||
|
inputs = {
|
||
|
dream2nix.url = "github:nix-community/dream2nix";
|
||
|
};
|
||
|
|
||
|
outputs = {
|
||
|
self,
|
||
|
dream2nix,
|
||
|
} @ inp: (dream2nix.lib.makeFlakeOutputs {
|
||
|
systems = ["x86_64-linux"];
|
||
|
config.projectRoot = ./.;
|
||
|
source = ./.;
|
||
|
});
|
||
|
}
|