From 12fa3004b466307b4ec0e50a80fb886d6d400250 Mon Sep 17 00:00:00 2001 From: Katherina Walshe-Grey Date: Thu, 6 Jun 2024 00:49:11 +0100 Subject: [PATCH] [tohru] Install LibreOffice --- home/libreoffice.nix | 9 +++++++++ hosts/tohru/home.nix | 1 + 2 files changed, 10 insertions(+) create mode 100644 home/libreoffice.nix diff --git a/home/libreoffice.nix b/home/libreoffice.nix new file mode 100644 index 0000000..16cf593 --- /dev/null +++ b/home/libreoffice.nix @@ -0,0 +1,9 @@ +{ config, lib, pkgs, ... }: + +{ + home.packages = with pkgs; [ + libreoffice + hunspell + hunspellDicts.en_GB-ise + ]; +} diff --git a/hosts/tohru/home.nix b/hosts/tohru/home.nix index 2bf8479..16683fb 100644 --- a/hosts/tohru/home.nix +++ b/hosts/tohru/home.nix @@ -6,6 +6,7 @@ ../../home/cli.nix ../../home/firefox.nix ../../home/gnome + ../../home/libreoffice.nix ../../home/vscode.nix ];