From dbfcdf81fd03e1e057d3da7d64db6c1498dfd77c Mon Sep 17 00:00:00 2001 From: logical_code Date: Mon, 7 Jul 2025 14:53:56 -0400 Subject: [PATCH] Update modules/coreAll/default.nix --- modules/coreAll/default.nix | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/modules/coreAll/default.nix b/modules/coreAll/default.nix index e69de29..74664dc 100644 --- a/modules/coreAll/default.nix +++ b/modules/coreAll/default.nix @@ -0,0 +1,23 @@ +{ + config, + lib, + pkgs, + ... +}: let + inherit (lib.modules) mkIf; + inherit (lib.options) mkEnableOption; + + cfg = config.coreAll; +in { + options.programs.common = { + enable = mkEnableOption "Base system utils"; + }; + + config = mkIf cfg.enable { + environment.systemPackages = with pkgs; [ + btop + git + wget + ]; + }; +} \ No newline at end of file