feat(nvf): add snippet for adding nix option

This commit is contained in:
Mohammad Rafiq 2025-05-05 23:19:09 +08:00
parent 08f64ab5a5
commit cfcb63cc6f
No known key found for this signature in database
2 changed files with 15 additions and 0 deletions

View file

@ -0,0 +1,8 @@
# comment
snippet option
lib.mkOption {
type = lib.types.$1;
default = $2;
example = "$3";
description = "$4";
};