nixos/desktop/office.nix
2025-11-27 11:24:32 -08:00

15 lines
314 B
Nix

{ config, pkgs, pkgs-unstable, lib, ... }:
{
environment.systemPackages = with pkgs; [
libreoffice-qt
thunderbird
slack # Team communication
pkgs-unstable.signal-desktop # Private messaging
# gimp # Temporarily commented out to avoid build errors
# calibre
];
}