Files
clan-core/pkgs/clan-cli/tests/test_flake/fake-module.nix
2024-03-17 19:48:49 +01:00

11 lines
202 B
Nix

{ lib, ... }:
{
options.clan.fake-module.fake-flag = lib.mkOption {
type = lib.types.bool;
default = false;
description = ''
A useless fake flag fro testing purposes.
'';
};
}