From c53b5395f7731765d8295a727ebbcf09df3bb3e3 Mon Sep 17 00:00:00 2001 From: 514fpv Date: Wed, 10 Jan 2024 13:38:13 +0800 Subject: [PATCH] feat(libreoffice): add libreoffice package --- home/libreoffice/home.nix | 9 +++++++++ home/libreoffice/nixos.nix | 22 ++++++++++++++++++++++ 2 files changed, 31 insertions(+) create mode 100644 home/libreoffice/home.nix create mode 100644 home/libreoffice/nixos.nix diff --git a/home/libreoffice/home.nix b/home/libreoffice/home.nix new file mode 100644 index 00000000..628782af --- /dev/null +++ b/home/libreoffice/home.nix @@ -0,0 +1,9 @@ +{ pkgs +, lib +, config +, ... }: with lib; let + cfg = config.passthrough.libreoffice; + enable = cfg.enable && (cfg.allUsers || (config.home.username == "app")); +in mkIf enable { + home.packages = with pkgs; [ libreoffice ]; +} diff --git a/home/libreoffice/nixos.nix b/home/libreoffice/nixos.nix new file mode 100644 index 00000000..9e911164 --- /dev/null +++ b/home/libreoffice/nixos.nix @@ -0,0 +1,22 @@ +{ pkgs +, lib +, config +, ... }: with lib; let + cfg = config.home.libreoffice; + persist = [ ".config/libreoffice" ]; +in { + options.home.libreoffice = { + enable = mkEnableOption "open source office suite"; + allUsers = mkEnableOption "set up for all users"; + }; + + config = { + users.homeModules = [ + # this module passes minecraft configuration to home-manager + { passthrough.libreoffice = cfg; } + ]; + + users.home.persist.directories = with cfg; mkIf (enable && allUsers) persist; + users.home.persistApp.directories = with cfg; mkIf (enable && !allUsers) persist; + }; +}