nix/modules/nixos/workstation/desktop/office/default.nix
Ameya Shenoy 4998e822a7 feat: init
Signed-off-by: Ameya Shenoy <shenoy.ameya@gmail.com>
2024-11-11 01:48:40 +05:30

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