blob: 259ae986783634d6babb289ef1eb867d27448186 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
{ pkgs, lib, config, ... }: {
options = {
software.dev.enable = lib.mkEnableOption "enables dev apps";
};
config = lib.mkIf config.software.dev.extra.enable {
environment.systemPackages = with pkgs; [
android-tools
cargo
hugo
#python-pip
uhubctl
wireguard-tools
];
};
}
|