blob: a06a1411bef34813034dd6e8a97ad43094f306e8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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
];
};
}
|