From 1e6b6eb10081b35be91ea61843e115742e458aa3 Mon Sep 17 00:00:00 2001 From: Filippo Berto Date: Tue, 26 Nov 2024 10:26:17 +0100 Subject: [PATCH] Disable libreoffice --- modules/hm/office.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/modules/hm/office.nix b/modules/hm/office.nix index 810f5fc..e24c0fb 100644 --- a/modules/hm/office.nix +++ b/modules/hm/office.nix @@ -1,7 +1,10 @@ { pkgs, ... }: { home.packages = builtins.attrValues { - inherit (pkgs) hunspell libreoffice-fresh; + inherit (pkgs) + hunspell + # libreoffice-fresh + ; inherit (pkgs.hunspellDicts) en_GB-large en_US-large it_IT; }; }