aboutsummaryrefslogtreecommitdiff
path: root/apps.nix
blob: 35a6bcc90f98d799e2cff5b70867ff73177dac55 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{ config, pkgs, ... }:
{
  # $ nix search wget
  environment.systemPackages = with pkgs; [
    vscode
    discord
    localsend
    bitwarden
    jetbrains.pycharm-professional
    jetbrains.clion
  ];

  # for Localsend
  networking.firewall.allowedTCPPorts = [ 53317 ];
  networking.firewall.allowedUDPPorts = [ 53317 ];
}