6 lines
141 B
Nix
6 lines
141 B
Nix
{ lib, ... }: {
|
|
options.self = lib.mkOption {
|
|
description = "The current flake.";
|
|
type = type.lazyAttrsOf type.unspecified;
|
|
};
|
|
}
|