made office module and added spell checking
This commit is contained in:
parent
0c504ec2fb
commit
a056a3c34e
4 changed files with 14 additions and 1 deletions
|
@ -73,6 +73,7 @@
|
|||
../../modules/software/browser
|
||||
../../modules/software/nix-helper
|
||||
../../modules/software/shells
|
||||
../../modules/software/office
|
||||
|
||||
../../modules/wm_and_de
|
||||
|
||||
|
|
5
modules/software/office/default.nix
Normal file
5
modules/software/office/default.nix
Normal file
|
@ -0,0 +1,5 @@
|
|||
{...}: {
|
||||
imports = [
|
||||
./libreoffice.nix
|
||||
];
|
||||
}
|
8
modules/software/office/libreoffice.nix
Normal file
8
modules/software/office/libreoffice.nix
Normal file
|
@ -0,0 +1,8 @@
|
|||
{pkgs, ...}: {
|
||||
environment.systemPackages = with pkgs; [
|
||||
libreoffice
|
||||
hunspell
|
||||
hunspellDicts.en_UK
|
||||
hunspellDicts.de_DE
|
||||
];
|
||||
}
|
|
@ -53,7 +53,6 @@
|
|||
nuclear
|
||||
#zathura
|
||||
sioyek
|
||||
libreoffice
|
||||
#feh
|
||||
nomacs
|
||||
#unstable.obsidian
|
||||
|
|
Loading…
Add table
Reference in a new issue