steam-resolve-vanity/flake.nix
2026-03-29 16:12:04 +02:00

17 lines
426 B
Nix

{
inputs = {
nixpkgs.url = "nixpkgs/nixos-25.11";
flakelight = {
url = "github:nix-community/flakelight";
inputs.nixpkgs.follows = "nixpkgs";
};
mill-scale = {
url = "git+https://codeberg.org/icewind/mill-scale.git";
inputs.flakelight.follows = "flakelight";
};
};
outputs = {mill-scale, ...}:
mill-scale ./. {
cargoTest = false; # tests require networking
};
}