mirror of
https://git.sr.ht/~rouven/nixos-config
synced 2025-04-27 00:48:30 +02:00
modularized the config
This commit is contained in:
parent
fa032ceaca
commit
7e3ab85170
10 changed files with 375 additions and 355 deletions
26
users/rouven/modules/tmux/default.nix
Normal file
26
users/rouven/modules/tmux/default.nix
Normal file
|
@ -0,0 +1,26 @@
|
|||
{ config, pkgs, ... }:
|
||||
{
|
||||
programs.tmux = {
|
||||
enable = true;
|
||||
keyMode = "vi";
|
||||
terminal = "tmux-256color";
|
||||
clock24 = true;
|
||||
extraConfig =
|
||||
''
|
||||
set -g default-shell /etc/profiles/per-user/rouven/bin/zsh
|
||||
bind P display-popup
|
||||
'';
|
||||
plugins = with pkgs.tmuxPlugins; [
|
||||
{
|
||||
plugin = dracula;
|
||||
extraConfig = ''
|
||||
set -g @dracula-show-fahrenheit false
|
||||
set -g @dracula-plugins "weather time"
|
||||
set -g @dracula-show-left-icon session
|
||||
set -g @dracula-show-powerline true
|
||||
'';
|
||||
}
|
||||
];
|
||||
};
|
||||
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue