mirror of
https://github.com/nix-community/dream2nix.git
synced 2025-01-07 07:09:26 +03:00
11 lines
265 B
Nix
11 lines
265 B
Nix
{
|
|
inputs.dream2nix.url = "github:nix-community/dream2nix";
|
|
outputs = inp:
|
|
inp.dream2nix.lib.makeFlakeOutputs {
|
|
# modify according to your supported systems
|
|
systems = ["x86_64-linux"];
|
|
config.projectRoot = ./.;
|
|
source = ./.;
|
|
};
|
|
}
|