blob: 72dbb326809c37237c514428d516ce4d6598106a (
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
];
};
}
|