Remove all uses of with

I decided once again that I don't like `with`
This commit is contained in:
SebastianStork 2025-10-08 19:22:41 +02:00
parent e72397e3e1
commit 72d4580779
4 changed files with 25 additions and 18 deletions

View file

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