From 056661f6f894bae7ef575146b5447dde736afd1f Mon Sep 17 00:00:00 2001 From: Schrottkatze Date: Thu, 27 Mar 2025 20:29:14 +0100 Subject: [PATCH] remove old template.nix --- modules/template.nix | 16 ---------------- 1 file changed, 16 deletions(-) delete mode 100644 modules/template.nix diff --git a/modules/template.nix b/modules/template.nix deleted file mode 100644 index 745d5f6..0000000 --- a/modules/template.nix +++ /dev/null @@ -1,16 +0,0 @@ -{ - config, - lib, - pkgs, - ... -}: let - cfg = config.jade.NAME; -in - with lib; { - options.jade.NAME = { - enable = mkEnableOption "Enable the module"; - }; - config = - mkIf cfg.enable { - }; - }