mirror of
https://github.com/SebastianStork/nixos-config.git
synced 2026-01-21 16:21:34 +01:00
Remove all uses of with
I decided once again that I don't like `with`
This commit is contained in:
parent
e72397e3e1
commit
72d4580779
4 changed files with 25 additions and 18 deletions
|
|
@ -8,11 +8,11 @@
|
|||
options.custom.programs.libreoffice.enable = lib.mkEnableOption "";
|
||||
|
||||
config = lib.mkIf config.custom.programs.libreoffice.enable {
|
||||
home.packages = with pkgs; [
|
||||
libreoffice
|
||||
hunspell
|
||||
hunspellDicts.de_DE
|
||||
hunspellDicts.en_US
|
||||
home.packages = [
|
||||
pkgs.libreoffice
|
||||
pkgs.hunspell
|
||||
pkgs.hunspellDicts.de_DE
|
||||
pkgs.hunspellDicts.en_US
|
||||
];
|
||||
};
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue