From fb3e39f0ce25d9cd4c82c9e8e152e49fd97a3a61 Mon Sep 17 00:00:00 2001 From: m3ta-chiron Date: Mon, 31 Aug 2026 11:44:58 +0200 Subject: [PATCH] fix: libreoffice-fresh -> libreoffice-stable (deprecated alias) --- profiles/contexts/desktop/apps/office.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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]; }; }