dream2nix/templates/simple/flake.nix

11 lines
296 B
Nix
Raw Normal View History

2022-04-08 13:59:24 +03:00
{
inputs.dream2nix.url = "github:nix-community/dream2nix";
outputs = inp:
inp.dream2nix.lib.makeFlakeOutputs {
2022-04-08 13:59:24 +03:00
# modify according to your supported systems
systems = inp.dream2nix.lib.systemsFromFile ./nix_systems;
config.projectRoot = ./.;
2022-04-08 13:59:24 +03:00
source = ./.;
};
}