From 4867b16dc74a240326295f9d04f6f1d24981e207 Mon Sep 17 00:00:00 2001 From: Charlotte Van Petegem Date: Tue, 7 Nov 2023 11:17:41 +0100 Subject: [PATCH] work: Add libreoffice, I have to use it too often to just nrun it these days --- modules/work/default.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/modules/work/default.nix b/modules/work/default.nix index 46e55f4c..f3781591 100644 --- a/modules/work/default.nix +++ b/modules/work/default.nix @@ -25,5 +25,8 @@ zotero.enable = lib.mkDefault true; }; }; + home-manager.users.charlotte = { pkgs, ... }: { + home.packages = with pkgs; [ libreoffice ]; + }; }; }