Merge remote-tracking branch 'ni/master'
This commit is contained in:
commit
2f4557882d
|
@ -25,7 +25,6 @@ with import <stockholm/lib>;
|
|||
};
|
||||
|
||||
environment.systemPackages = with pkgs; [
|
||||
htop
|
||||
iftop
|
||||
iotop
|
||||
iptables
|
||||
|
|
|
@ -31,7 +31,6 @@ with import <stockholm/lib>;
|
|||
get
|
||||
gnupg1compat
|
||||
haskellPackages.hledger
|
||||
htop
|
||||
jq
|
||||
mkpasswd
|
||||
netcat
|
||||
|
|
|
@ -34,7 +34,6 @@ with import <stockholm/lib>;
|
|||
file
|
||||
gnupg1compat
|
||||
haskellPackages.hledger
|
||||
htop
|
||||
jq
|
||||
krebszones
|
||||
mkpasswd
|
||||
|
|
|
@ -36,7 +36,6 @@ with import <stockholm/lib>;
|
|||
file
|
||||
gnupg1compat
|
||||
haskellPackages.hledger
|
||||
htop
|
||||
jq
|
||||
mkpasswd
|
||||
netcat
|
||||
|
|
|
@ -158,9 +158,10 @@ with import <stockholm/lib>;
|
|||
{
|
||||
environment.systemPackages = [
|
||||
pkgs.get
|
||||
pkgs.htop
|
||||
pkgs.krebspaste
|
||||
pkgs.ovh-zone
|
||||
pkgs.nix-prefetch-scripts
|
||||
pkgs.ovh-zone
|
||||
pkgs.push
|
||||
];
|
||||
}
|
||||
|
|
|
@ -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
|
||||
];
|
||||
};
|
||||
};
|
||||
|
|
|
@ -300,7 +300,6 @@ let {
|
|||
vim-wrapper = pkgs.symlinkJoin {
|
||||
name = "vim";
|
||||
paths = [
|
||||
pkgs.vim_configurable
|
||||
(pkgs.writeDashBin "vim" ''
|
||||
set -efu
|
||||
(umask 0077; exec ${pkgs.coreutils}/bin/mkdir -p ${toString mkdirs})
|
||||
|
@ -310,6 +309,7 @@ let {
|
|||
# vim-orgmode needs Python, thus vim_configurable instead of just vim
|
||||
exec ${pkgs.vim_configurable}/bin/vim "$@"
|
||||
'')
|
||||
pkgs.vim_configurable
|
||||
];
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in a new issue