diff options
author | Adrian Kummerlaender | 2020-08-27 21:10:56 +0200 |
---|---|---|
committer | Adrian Kummerlaender | 2020-08-27 21:10:56 +0200 |
commit | 290c1c8116cd70cc248cf4bb9458611a16c5694a (patch) | |
tree | 7a2e824dd593e31ba5878b419460d543473d85a3 /gui/apps | |
parent | 191438718de6175cb0cff457005ed312cc4e8fd8 (diff) | |
download | nixos_home-290c1c8116cd70cc248cf4bb9458611a16c5694a.tar nixos_home-290c1c8116cd70cc248cf4bb9458611a16c5694a.tar.gz nixos_home-290c1c8116cd70cc248cf4bb9458611a16c5694a.tar.bz2 nixos_home-290c1c8116cd70cc248cf4bb9458611a16c5694a.tar.lz nixos_home-290c1c8116cd70cc248cf4bb9458611a16c5694a.tar.xz nixos_home-290c1c8116cd70cc248cf4bb9458611a16c5694a.tar.zst nixos_home-290c1c8116cd70cc248cf4bb9458611a16c5694a.zip |
Use niv for tracking channel versions
This way the config is actually reproducible without manually
tracking supported nixpkgs states. home-manager is now not installed
environment-wide anymore but only available inside a nix-shell.
Diffstat (limited to 'gui/apps')
-rw-r--r-- | gui/apps/web.nix | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gui/apps/web.nix b/gui/apps/web.nix index 5b85ba5..eab7dbd 100644 --- a/gui/apps/web.nix +++ b/gui/apps/web.nix @@ -1,11 +1,11 @@ -{ config, pkgs, ... }: +{ config, pkgs, pkgs-unstable, ... }: { home = { packages = (with pkgs; [ thunderbird tdesktop - ]) ++ (with config.custom.nixpkgs-unstable; [ + ]) ++ (with pkgs-unstable; [ zotero ]); }; |