devel.nix (253B)
1 { pkgs, ... }: 2 { 3 environment.systemPackages = with pkgs; [ 4 # bash 5 shellcheck-minimal 6 shfmt 7 # go 8 go 9 # gcc 10 gcc 11 # web 12 hugo 13 ]; 14 # networking.firewall.allowedTCPPorts = [ 8080 ]; # nixos-firewall-tool open tcp 8080 15 }