diff options
Diffstat (limited to 'modules/nixos/tools/misc/default.nix')
| -rw-r--r-- | modules/nixos/tools/misc/default.nix | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/modules/nixos/tools/misc/default.nix b/modules/nixos/tools/misc/default.nix new file mode 100644 index 0000000..a06a141 --- /dev/null +++ b/modules/nixos/tools/misc/default.nix @@ -0,0 +1,19 @@ +{ options, config, lib, pkgs, namespace, ... }: + +with lib; with lib.${namespace}; let + cfg = config.${namespace}.tools.misc; +in { + options.${namespace}.tools.misc = with types; { + enable = mkEnableOption "misc tools"; + }; + + config = mkIf cfg.enable { + environment.systemPackages = with pkgs; [ + jq + killall + moreutils + unzip + wget + ]; + }; +} |