reformat programs

This commit is contained in:
William 2026-02-07 10:00:06 -03:00
parent 0112637288
commit 6d28510dca
5 changed files with 124 additions and 129 deletions

View file

@ -1,25 +1,22 @@
{ ... }:
{
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
];
flake.modules.nixos.programs-office =
{ pkgs, ... }:
{
environment.systemPackages = with pkgs; [
aspell
aspellDicts.de
aspellDicts.en
aspellDicts.en-computers
aspellDicts.pt_BR
papers
presenterm
rnote
];
services.flatpak.packages = [
# Office Suite
"com.collabora.Office"
];
};
services.flatpak.packages = [
"com.collabora.Office"
];
};
}