bin/flake.nix
Robin Appelman d1cd496a6d
Some checks failed
Build CI / pre-build-checks (push) Failing after 3s
Build CI / build (amd64) (push) Has been skipped
Build CI / build (arm64) (push) Has been skipped
add dev flake
2026-05-31 15:06:57 +02:00

15 lines
365 B
Nix

{
inputs = {
nixpkgs.url = "nixpkgs/nixos-26.05";
flakelight = {
url = "github:nix-community/flakelight";
inputs.nixpkgs.follows = "nixpkgs";
};
mill-scale = {
url = "git+https://codeberg.org/icewind/mill-scale";
inputs.flakelight.follows = "flakelight";
};
};
outputs = {mill-scale, ...}:
mill-scale ./. {};
}