blob: af8a8a7bd38d4ae279ee37384caaae3253bb4919 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
{ pkgs, lib, config, ... }: {
options = {
software.development.enable = lib.mkEnableOption "enables development tools";
};
config = lib.mkIf config.software.development.enable {
environment.systemPackages = with pkgs; [
#adb-sync
android-tools
gcc
git
gnumake
hugo
lua
pkg-config
];
# Open 1313 for hugo serve
networking.firewall.allowedTCPPorts = [
1313
];
};
}
|