diff options
Diffstat (limited to 'gui/apps')
-rw-r--r-- | gui/apps/web.nix | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/gui/apps/web.nix b/gui/apps/web.nix index 2d74ed3..540150a 100644 --- a/gui/apps/web.nix +++ b/gui/apps/web.nix @@ -1,11 +1,13 @@ -{ pkgs, ... }: +{ config, pkgs, ... }: { home = { - packages = with pkgs; [ + packages = (with pkgs; [ thunderbird tdesktop - ]; + ]) ++ (with config.custom.nixpkgs-unstable; [ + zotero + ]); }; programs.firefox.enable = true; |