Update modules/coreAll/default.nix

This commit is contained in:
logical_code 2025-07-07 14:53:56 -04:00
parent 6fcb3daf91
commit dbfcdf81fd

View file

@ -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
];
};
}