diff --git a/profiles/contexts/desktop/apps/office.nix b/profiles/contexts/desktop/apps/office.nix index 3d9c062..c62a10b 100644 --- a/profiles/contexts/desktop/apps/office.nix +++ b/profiles/contexts/desktop/apps/office.nix @@ -11,6 +11,8 @@ in { options.desktop.apps.office.enable = mkEnableOption "install office and paperwork apps"; config = mkIf cfg.enable { - home.packages = [pkgs.libreoffice-fresh]; + # libreoffice-fresh warns: upstream changed versioning; -stable is the + # supported attr now. + home.packages = [pkgs.libreoffice-stable]; }; }