diff options
author | multi <depot@in-addr.xyz> | 2020-11-22T20·14+0000 |
---|---|---|
committer | multi <depot@in-addr.xyz> | 2020-11-22T20·29+0000 |
commit | 96eac23250d7f2c68ba384c08a02c17944b6e833 (patch) | |
tree | d9791cb9ad6f46d5fd6a672904e98b31662a5154 /users/multi/home/configs/whitby.nix | |
parent | a5ee01a827e30c048d98fc2121c5c292122d9d3a (diff) |
fix(users/multi/home): re-add overridden htop package to home-manager configuration. r/1902
I previously removed my local package set from my HM config while the latter was being made readTree compatible. Now that both the HM config and the local package set can be built with readTree, I can re-enable the locally-overridden htop package. Change-Id: I77e20248c010bc7027e0b0a3164ec48d6ec29f31 Reviewed-on: https://cl.tvl.fyi/c/depot/+/2132 Tested-by: BuildkiteCI Reviewed-by: multi <depot@in-addr.xyz>
Diffstat (limited to 'users/multi/home/configs/whitby.nix')
-rw-r--r-- | users/multi/home/configs/whitby.nix | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/users/multi/home/configs/whitby.nix b/users/multi/home/configs/whitby.nix index 90ed1e470fc4..1ed95770f7a3 100644 --- a/users/multi/home/configs/whitby.nix +++ b/users/multi/home/configs/whitby.nix @@ -2,6 +2,7 @@ let nixpkgs = import pkgs.nixpkgsSrc {}; + localpkgs = depot.users.multi.pkgs; # use the depot checkout in my home directory, to make hacking around easier, # instead of the depot checkout sitting in the nix stores @@ -57,6 +58,7 @@ in nixpkgs.strace nixpkgs.file nixpkgs.pciutils + localpkgs.htop ]; home.file = { |