commit 6bc802dee5a9a4ce92bced9e6f950a29678f1d82 Author: NullBite Date: Fri Feb 7 18:29:23 2025 -0500 untracked files on main: b8e37d3 flake: move old `let` block to config.flake scope diff --git a/pkgs/module.nix b/pkgs/module.nix new file mode 100644 index 0000000..1e88d13 --- /dev/null +++ b/pkgs/module.nix @@ -0,0 +1,19 @@ +{ inputs, self, config, lib, options, ... }: +let + cfg = config.nixfiles.outputs.packages; +in +{ + options.nixfiles.outputs.packages = { + enable = lib.mkEnableOption "" // { + description = '' + Whether to generate the packages output. + ''; + default = true; + }; + }; + config = lib.mkIf cfg.enable { + perSystem = { system, inputs', self', pkgs, ... }: { + + }; + }; +}