diff options
| author | tv <tv@krebsco.de> | 2017-06-25 16:15:18 +0200 |
|---|---|---|
| committer | tv <tv@krebsco.de> | 2017-06-25 16:15:18 +0200 |
| commit | 7aa35d3576736eef4ccdb55fb2b84169b2a71159 (patch) | |
| tree | 44c7ceffc943df250328b91d87de193486ab031b /tv/2configs/htop.nix | |
| parent | 536604b2ca4164f6375d9fd5abaaf103ae79581b (diff) | |
tv: properly use symlinkJoin paths
Because earlier entries override later ones.
Diffstat (limited to 'tv/2configs/htop.nix')
| -rw-r--r-- | tv/2configs/htop.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tv/2configs/htop.nix b/tv/2configs/htop.nix index 5d7e027..d7d2d7b 100644 --- a/tv/2configs/htop.nix +++ b/tv/2configs/htop.nix @@ -7,7 +7,6 @@ with import <stockholm/lib>; htop = pkgs.symlinkJoin { name = "htop"; paths = [ - super.htop (pkgs.writeDashBin "htop" '' export HTOPRC=${pkgs.writeText "htoprc" '' fields=0 48 17 18 38 39 40 2 46 47 49 1 @@ -37,6 +36,7 @@ with import <stockholm/lib>; ''} exec ${super.htop}/bin/htop "$@" '') + super.htop ]; }; }; |
