aboutsummaryrefslogtreecommitdiff
path: root/nixos/apps.nix
blob: cbe809c4b3ff62545cf568cac8d1a6b7cacee7e3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{ config, pkgs, ... }:
{
  imports =
    [
      ./apps/browser.nix
    ];
  environment.systemPackages = with pkgs; [
    gimp
    vscode
    discord
    localsend
    bitwarden-desktop
    obsidian
    libreoffice-qt6-fresh
    kdePackages.dolphin
    wineWowPackages.stable
    vlc
  ];

  networking.firewall.allowedTCPPorts = [ 53317 8081 ];
  networking.firewall.allowedUDPPorts = [ 53317 8081 ];
}