fix: libreoffice-fresh -> libreoffice-stable (deprecated alias)

This commit is contained in:
2026-08-31 11:44:58 +02:00
parent 9b1be8eca4
commit fb3e39f0ce
+3 -1
View File
@@ -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];
};
}