l tmux: init
This commit is contained in:
parent
e47f1e635c
commit
adf9339f39
|
@ -10,6 +10,7 @@ with import <stockholm/lib>;
|
|||
./htop.nix
|
||||
<stockholm/krebs/2configs/security-workarounds.nix>
|
||||
./wiregrill.nix
|
||||
./tmux.nix
|
||||
./tor-ssh.nix
|
||||
{
|
||||
users.extraUsers =
|
||||
|
|
|
@ -2,16 +2,11 @@ with import <stockholm/lib>;
|
|||
{ config, pkgs, ... }:
|
||||
|
||||
{
|
||||
nixpkgs.config.packageOverrides = super: {
|
||||
tmux = pkgs.symlinkJoin {
|
||||
name = "tmux";
|
||||
paths = [
|
||||
(pkgs.writeDashBin "tmux" ''
|
||||
exec ${super.tmux}/bin/tmux -f ${pkgs.writeText "tmux.conf" ''
|
||||
#change prefix key to `
|
||||
set-option -g prefix `
|
||||
unbind-key C-b
|
||||
bind ` send-prefix
|
||||
environment.etc."tmux.conf".text = ''
|
||||
#prefix key to `
|
||||
set-option -g prefix2 `
|
||||
|
||||
bind-key r source-file /etc/tmux.conf \; display-message "/etc/tmux.conf reloaded"
|
||||
|
||||
set-option -g default-terminal screen-256color
|
||||
|
||||
|
@ -20,7 +15,13 @@ with import <stockholm/lib>;
|
|||
bind-key p switch-client -p
|
||||
bind-key n switch-client -n
|
||||
bind-key C-s switch-client -l
|
||||
''} "$@"
|
||||
'';
|
||||
nixpkgs.config.packageOverrides = super: {
|
||||
tmux = pkgs.symlinkJoin {
|
||||
name = "tmux";
|
||||
paths = [
|
||||
(pkgs.writeDashBin "tmux" ''
|
||||
exec ${super.tmux}/bin/tmux -f /etc/tmux.conf "$@"
|
||||
'')
|
||||
super.tmux
|
||||
];
|
||||
|
|
Loading…
Reference in a new issue