17 lines
509 B
Nix
17 lines
509 B
Nix
{ 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
|
|
];
|
|
};
|
|
};
|
|
}
|