mirror of
https://git.sr.ht/~rouven/nixos-config
synced 2024-11-15 05:13:10 +01:00
made tmux config global
This commit is contained in:
parent
06eff6014c
commit
f90ba1151a
|
@ -125,6 +125,7 @@
|
||||||
./hosts/iso
|
./hosts/iso
|
||||||
./shared/caches.nix
|
./shared/caches.nix
|
||||||
./shared/vim.nix
|
./shared/vim.nix
|
||||||
|
./shared/tmux.nix
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
|
@ -13,7 +13,7 @@
|
||||||
|
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
certificateScheme = 3;
|
certificateScheme = "acme-nginx";
|
||||||
};
|
};
|
||||||
services.rspamd.locals."worker-controller.inc".source = config.sops.secrets."rspamd".path;
|
services.rspamd.locals."worker-controller.inc".source = config.sops.secrets."rspamd".path;
|
||||||
services.nginx.virtualHosts."rspamd.rfive.de" = {
|
services.nginx.virtualHosts."rspamd.rfive.de" = {
|
||||||
|
|
|
@ -7,6 +7,7 @@
|
||||||
./gpg.nix
|
./gpg.nix
|
||||||
./sops.nix
|
./sops.nix
|
||||||
./vim.nix
|
./vim.nix
|
||||||
|
./tmux.nix
|
||||||
./zsh.nix
|
./zsh.nix
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
|
@ -10,16 +10,12 @@
|
||||||
set -g default-shell ${pkgs.zsh}/bin/zsh
|
set -g default-shell ${pkgs.zsh}/bin/zsh
|
||||||
bind P display-popup
|
bind P display-popup
|
||||||
set -sg escape-time 10
|
set -sg escape-time 10
|
||||||
|
set -g @dracula-plugins "git time"
|
||||||
|
set -g @dracula-show-left-icon session
|
||||||
|
set -g @dracula-show-powerline true
|
||||||
|
run-shell ${pkgs.tmuxPlugins.dracula}/share/tmux-plugins/dracula/dracula.tmux
|
||||||
'';
|
'';
|
||||||
plugins = with pkgs.tmuxPlugins; [
|
plugins = with pkgs.tmuxPlugins; [
|
||||||
{
|
|
||||||
plugin = dracula;
|
|
||||||
extraConfig = ''
|
|
||||||
set -g @dracula-plugins "git time"
|
|
||||||
set -g @dracula-show-left-icon session
|
|
||||||
set -g @dracula-show-powerline true
|
|
||||||
'';
|
|
||||||
}
|
|
||||||
tmux-fzf
|
tmux-fzf
|
||||||
];
|
];
|
||||||
};
|
};
|
|
@ -11,7 +11,6 @@
|
||||||
./sops
|
./sops
|
||||||
./spotify
|
./spotify
|
||||||
./ssh
|
./ssh
|
||||||
./tmux
|
|
||||||
./vifm
|
./vifm
|
||||||
./theme
|
./theme
|
||||||
./packages.nix
|
./packages.nix
|
||||||
|
|
|
@ -24,7 +24,7 @@
|
||||||
programs.gh = {
|
programs.gh = {
|
||||||
enable = true;
|
enable = true;
|
||||||
settings = {
|
settings = {
|
||||||
editor = "nvim";
|
editor = "hx";
|
||||||
git_protocol = "ssh";
|
git_protocol = "ssh";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
|
@ -7,7 +7,7 @@
|
||||||
# better desktop application name. "wpa_gui" kinda sucks
|
# better desktop application name. "wpa_gui" kinda sucks
|
||||||
postInstall = prev.postInstall + ''
|
postInstall = prev.postInstall + ''
|
||||||
|
|
||||||
substituteInPlace $out/share/applications/wpa_gui.desktop --replace "Name=wpa_gui" "Name=WPA Supplicant"
|
substituteInPlace $out/share/applications/wpa_gui.desktop --replace "Name=wpa_gui" "Name=Manage Wifi"
|
||||||
'';
|
'';
|
||||||
})) # manage wifi
|
})) # manage wifi
|
||||||
cinnamon.nemo
|
cinnamon.nemo
|
||||||
|
|
Loading…
Reference in a new issue