nixos/modules/work/libreoffice/default.nix
2023-09-16 08:12:55 +00:00

21 lines
304 B
Nix

{
outputs,
options,
config,
lib,
pkgs,
...
}:
with lib; let
cfg = config.modules.work.libreoffice;
in {
options.modules.work.libreoffice = {
enable = mkEnableOption false;
};
config = mkIf cfg.enable {
users.users.sako.packages = with pkgs; [
libreoffice
];
};
}