aboutsummaryrefslogtreecommitdiff
path: root/nixos/apps.nix
blob: 1c1814b79d727c1e63792b7f78b6d1a5002bbd11 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
{ config, pkgs, ... }:
{
  # $ nix search wget
  environment.systemPackages = with pkgs; [
    vscode
    discord
    localsend
    bitwarden
    obsidian
    jetbrains.pycharm-professional
    jetbrains.clion
    wineWowPackages.stable
    sqlite
    libreoffice-qt6-fresh

    kdePackages.dolphin
    yazi
    # kio-extras
    # ffmpegthumbs
    # kdePackages.kdegraphics-thumbnailers
    # kdePackages.kimageformats

    android-tools
    scrcpy
  ];

  xdg = {
    mime.enable = true;

    mime.defaultApplications = {
      # don't use libreoffice draw for pdfs, use firefox
      "application/pdf" = [ "firefox.desktop" ];
    };
  };

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