Merge branch 'master' of prism:stockholm

This commit is contained in:
makefu 2017-06-27 21:02:53 +02:00
commit 5569053e87
No known key found for this signature in database
GPG Key ID: 36F7711F3FC0F225
9 changed files with 6 additions and 9 deletions

View File

@ -3,6 +3,6 @@
{ {
krebs.build.source.nixpkgs.git = { krebs.build.source.nixpkgs.git = {
url = https://cgit.lassul.us/nixpkgs; url = https://cgit.lassul.us/nixpkgs;
ref = "4847963"; ref = "0a4db15";
}; };
} }

View File

@ -58,7 +58,7 @@ with import <stockholm/lib>;
krebs.build = { krebs.build = {
host = config.krebs.hosts.alnus; host = config.krebs.hosts.alnus;
user = mkForce config.krebs.users.dv; user = mkForce config.krebs.users.dv;
source.nixpkgs.git.ref = mkForce "e924319cb6c74aa2a9c943eddeb0caef79db01bc"; source.nixpkgs.git.ref = mkForce "9b948ea439ddbaa26740ce35543e7e35d2aa6d18";
}; };
networking.networkmanager.enable = true; networking.networkmanager.enable = true;

View File

@ -25,7 +25,6 @@ with import <stockholm/lib>;
}; };
environment.systemPackages = with pkgs; [ environment.systemPackages = with pkgs; [
htop
iftop iftop
iotop iotop
iptables iptables

View File

@ -31,7 +31,6 @@ with import <stockholm/lib>;
get get
gnupg1compat gnupg1compat
haskellPackages.hledger haskellPackages.hledger
htop
jq jq
mkpasswd mkpasswd
netcat netcat

View File

@ -34,7 +34,6 @@ with import <stockholm/lib>;
file file
gnupg1compat gnupg1compat
haskellPackages.hledger haskellPackages.hledger
htop
jq jq
krebszones krebszones
mkpasswd mkpasswd

View File

@ -36,7 +36,6 @@ with import <stockholm/lib>;
file file
gnupg1compat gnupg1compat
haskellPackages.hledger haskellPackages.hledger
htop
jq jq
mkpasswd mkpasswd
netcat netcat

View File

@ -158,9 +158,10 @@ with import <stockholm/lib>;
{ {
environment.systemPackages = [ environment.systemPackages = [
pkgs.get pkgs.get
pkgs.htop
pkgs.krebspaste pkgs.krebspaste
pkgs.ovh-zone
pkgs.nix-prefetch-scripts pkgs.nix-prefetch-scripts
pkgs.ovh-zone
pkgs.push pkgs.push
]; ];
} }

View File

@ -7,7 +7,6 @@ with import <stockholm/lib>;
htop = pkgs.symlinkJoin { htop = pkgs.symlinkJoin {
name = "htop"; name = "htop";
paths = [ paths = [
super.htop
(pkgs.writeDashBin "htop" '' (pkgs.writeDashBin "htop" ''
export HTOPRC=${pkgs.writeText "htoprc" '' export HTOPRC=${pkgs.writeText "htoprc" ''
fields=0 48 17 18 38 39 40 2 46 47 49 1 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 "$@" exec ${super.htop}/bin/htop "$@"
'') '')
super.htop
]; ];
}; };
}; };

View File

@ -300,7 +300,6 @@ let {
vim-wrapper = pkgs.symlinkJoin { vim-wrapper = pkgs.symlinkJoin {
name = "vim"; name = "vim";
paths = [ paths = [
pkgs.vim_configurable
(pkgs.writeDashBin "vim" '' (pkgs.writeDashBin "vim" ''
set -efu set -efu
(umask 0077; exec ${pkgs.coreutils}/bin/mkdir -p ${toString mkdirs}) (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 # vim-orgmode needs Python, thus vim_configurable instead of just vim
exec ${pkgs.vim_configurable}/bin/vim "$@" exec ${pkgs.vim_configurable}/bin/vim "$@"
'') '')
pkgs.vim_configurable
]; ];
}; };