8 lines
115 B
Nix

{lib, ...}: let
inherit (lib) types mkOption;
in {
options.is-nixos = mkOption {
type = types.bool;
};
}