mirror of
https://github.com/zhaofengli/attic.git
synced 2024-12-15 17:50:57 +00:00
15 lines
195 B
Nix
15 lines
195 B
Nix
{ lib, flake-parts-lib, ... }:
|
|
let
|
|
inherit (lib)
|
|
mkOption
|
|
types
|
|
;
|
|
in
|
|
{
|
|
options = {
|
|
attic.distributor = mkOption {
|
|
type = types.str;
|
|
default = "dev";
|
|
};
|
|
};
|
|
}
|