mirror of
https://codeberg.org/icewind/nextcloud-config-parser.git
synced 2026-06-03 08:34:13 +02:00
17 lines
412 B
Nix
17 lines
412 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 ./. {
|
|
extraPaths = [./tests/configs];
|
|
};
|
|
}
|