summary refs log tree commit diff
path: root/modules/libreoffice.nix
blob: 8aad8e22235addbf21940871736ff11fa3c2d2ff (plain)
1
2
3
4
5
6
7
8
9
10
11
{ config, pkgs, ... }:

{
  environment.systemPackages = (with pkgs; [
    libreoffice-fresh

    hunspell
  ]) ++ (with pkgs.hunspellDicts; [
    en_US-large en_GB-large de_DE ru_RU
  ]);
}