nixos/home/libreoffice/home.nix
2025-01-13 11:52:09 +08:00

15 lines
231 B
Nix

{
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 ];
}