mirror of
https://github.com/icewind1991/warp-real-ip.git
synced 2026-08-02 08:14:49 +02:00
14 lines
365 B
Nix
14 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.git";
|
|
inputs.flakelight.follows = "flakelight";
|
|
};
|
|
};
|
|
outputs = {mill-scale, ...}: mill-scale ./. {};
|
|
}
|