pantheon/packages/snippets/snippets/nix.json

20 lines
392 B
JSON

{
"module": {
"prefix": "mod",
"body": [
"{ config, lib, ... }:",
"let",
" inherit (lib) mkIf mkEnableOption;",
" cfg = config.$1;",
"in",
"{",
" options.$1 = {",
" enable = mkEnableOption \"$2\";",
" $3",
" };",
" config = mkIf cfg.enable {$4};",
"}"
],
"description": "empty module"
}
}