nixos/desktop/office.nix
2026-02-15 22:46:17 -08:00

20 lines
521 B
Nix
Executable file

{ 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
];
#for zoom
services.flatpak.enable = true;
xdg.portal = {
enable = true;
extraPortals = [ pkgs.kdePackages.xdg-desktop-portal-kde ];
config.common.default = [ "kde" "gtk" ];
};
}