pet: Add support for tags in snippets (#1883)
Add missing `tag` option for elements of `programs.pet.snippets`.
This commit is contained in:
parent
6aa6556bca
commit
1e7e8ac75d
5 changed files with 45 additions and 0 deletions
|
|
@ -36,6 +36,15 @@ let
|
|||
Example output of the command.
|
||||
'';
|
||||
};
|
||||
|
||||
tag = mkOption {
|
||||
type = types.listOf types.str;
|
||||
default = [ ];
|
||||
example = literalExample ''["git" "nixpkgs"]'';
|
||||
description = ''
|
||||
List of tags attached to the command.
|
||||
'';
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue