mirror of
https://codeberg.org/icewind/comma-separated.git
synced 2026-06-03 10:14:14 +02:00
14 lines
350 B
Nix
14 lines
350 B
Nix
{
|
|
inputs = {
|
|
nixpkgs.url = "nixpkgs/nixos-24.05";
|
|
flakelight = {
|
|
url = "github:nix-community/flakelight";
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
};
|
|
mill-scale = {
|
|
url = "github:icewind1991/mill-scale";
|
|
inputs.flakelight.follows = "flakelight";
|
|
};
|
|
};
|
|
outputs = { mill-scale, ... }: mill-scale ./. { };
|
|
}
|