nixos/desktop/office.nix
2026-01-02 09:44:41 -08:00

22 lines
549 B
Nix

{ config, pkgs, pkgs-unstable, lib, ... }:
{
environment.systemPackages = with pkgs; [
libreoffice-qt
thunderbird
slack # Team communication
pkgs-unstable.signal-desktop # Private messaging
freerdp # xfreerdp CLI client
remmina # GTK GUI RDP client
# gimp # Temporarily commented out to avoid build errors
# calibre
];
#for zoom
services.flatpak.enable = true;
xdg.portal = {
enable = true;
extraPortals = [ pkgs.kdePackages.xdg-desktop-portal-kde ];
};
}