1
0
Fork 0
mirror of https://github.com/zhaofengli/attic.git synced 2024-12-15 17:50:57 +00:00
attic/flake/distributor.nix

16 lines
195 B
Nix
Raw Normal View History

2024-08-30 16:32:10 +00:00
{ lib, flake-parts-lib, ... }:
let
inherit (lib)
mkOption
types
;
in
{
options = {
attic.distributor = mkOption {
type = types.str;
default = "dev";
};
};
}