From 65d6b2bd5af5c904cd6cdf56e4f5b348196995b7 Mon Sep 17 00:00:00 2001 From: Joseph Hanson Date: Mon, 29 Jul 2024 11:05:06 -0500 Subject: [PATCH] clean up --- .vscode/module.code-snippets | 32 -------------------------------- 1 file changed, 32 deletions(-) delete mode 100644 .vscode/module.code-snippets diff --git a/.vscode/module.code-snippets b/.vscode/module.code-snippets deleted file mode 100644 index 8c47588..0000000 --- a/.vscode/module.code-snippets +++ /dev/null @@ -1,32 +0,0 @@ -{ - "nix-module": { - "prefix": "nm", - "body": [ - "{ lib", - ", config", - ", pkgs", - ", ...", - "}:", - "with lib;", - "let", - " cfg = config.mySystem.${1}.${2};", - " app = \"${3}\"", - " appFolder = \"apps/${app}\";", - " persistentFolder = \"${config.mySystem.persistentFolder}/${appFolder}\";", - " user = app;", - " group = app;", - "in", - "{", - " options.mySystem.${1}.${2}.enable = mkEnableOption \"${4}\";", - "", - " config = mkIf cfg.enable {", - "", - " $5", - "", - " };", - "}", - "" - ], - "description": "nix-module" - } -}