diff options
author | lassulus <lass@lassul.us> | 2017-06-24 16:40:49 +0200 |
---|---|---|
committer | lassulus <lass@lassul.us> | 2017-06-24 16:40:49 +0200 |
commit | 13de8c6bd2816bd0cd66433be93168720ce59d55 (patch) | |
tree | b1cf97e54797643688b627e331e2515cf22fd57e /lass/2configs/htop.nix | |
parent | ea2cd88ed355aa58e527cac6b3dcd7e3c524e730 (diff) |
l: set symlinkJoin pkgs in correct order
Diffstat (limited to 'lass/2configs/htop.nix')
-rw-r--r-- | lass/2configs/htop.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lass/2configs/htop.nix b/lass/2configs/htop.nix index ec86d4120..d9307347e 100644 --- a/lass/2configs/htop.nix +++ b/lass/2configs/htop.nix @@ -8,7 +8,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 @@ -38,6 +37,7 @@ with import <stockholm/lib>; ''} exec ${super.htop}/bin/htop "$@" '') + super.htop ]; }; }; |