nix/modules/nixos/workstation/desktop/office/default.nix

18 lines
509 B
Nix
Raw Normal View History

{ lib, config, pkgs, ... }: {
config = lib.mkIf config.snowflake.workstation.isOfficeMachine {
environment = {
systemPackages = with pkgs; [
# office suite
# TODO: use onlyoffice-desktopeditors, but its not working since for some reason its taking 24.04 version instead of nixos-unstable from nixpkgs. check why
onlyoffice-bin_latest
# libreoffice
libreoffice
hunspell
hunspellDicts.uk_UA
hunspellDicts.th_TH
];
};
};
}