nixos/desktop/office.nix
2025-12-18 12:00:33 -08:00

17 lines
399 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
];
}