nix-config/aspects/programs/office.nix
William 92e16d0032 add aspects/programs/ home-manager modules
Program categories: graphics, media, office, utilities, web

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-02-06 22:36:30 -03:00

25 lines
467 B
Nix

{ ... }:
{
flake.modules.nixos.programs-office = { pkgs, ... }: {
environment.systemPackages = with pkgs; [
# Spelling
aspell
aspellDicts.de
aspellDicts.en
aspellDicts.en-computers
aspellDicts.pt_BR
# Document Viewing
papers
# Presentations
presenterm
# Note Taking & Drawing
rnote
];
services.flatpak.packages = [
# Office Suite
"com.collabora.Office"
];
};
}