From fd7e98aa1558cd183c3fabf851ea5bb3d534008c Mon Sep 17 00:00:00 2001 From: Joseph Hanson Date: Sat, 14 Sep 2024 17:32:11 -0500 Subject: [PATCH] fix templates --- .vscode/nixmodule.code-snippets | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.vscode/nixmodule.code-snippets b/.vscode/nixmodule.code-snippets index 842c80c..820e939 100644 --- a/.vscode/nixmodule.code-snippets +++ b/.vscode/nixmodule.code-snippets @@ -12,7 +12,7 @@ " cfg = config.mySystem.${1:moduleName};", "in", "{", - " options.${1:moduleName} = {", + " options.mySystem.${1:moduleName} = {", " enable = lib.mkEnableOption \"${2:Description of the module}\";", " };", "", @@ -32,7 +32,7 @@ " cfg = config.myHome.programs.${1:moduleName};", "in", "{", - " options.${1:moduleName} = {", + " options.myHome.programs.${1:moduleName} = {", " enable = lib.mkEnableOption \"${2:Description of the module}\";", " };", "",