dream2nix/templates/simple/flake.nix
2022-06-02 17:46:35 +03:00

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 = ./.;
};
}