diff options
Diffstat (limited to 'nixos/apps.nix')
| -rw-r--r-- | nixos/apps.nix | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/nixos/apps.nix b/nixos/apps.nix new file mode 100644 index 0000000..1c1814b --- /dev/null +++ b/nixos/apps.nix @@ -0,0 +1,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 ]; +} |
