formatting

This commit is contained in:
Osman Faruk Bayram 2025-02-04 18:31:48 +03:00
parent c1c611e2e4
commit c92953a5e3
2 changed files with 9 additions and 13 deletions

View file

@ -3,8 +3,7 @@
pkgs,
stateVersion,
...
}:
let
}: let
wanikani-script = builtins.path {
path = ./wanikani-tmux.sh;
};
@ -26,12 +25,10 @@ let
description = "Feature packed Dracula theme for tmux!";
license = licenses.mit;
platforms = platforms.unix;
maintainers = with maintainers; [ ethancedwards8 ];
maintainers = with maintainers; [ethancedwards8];
};
};
in
{
in {
# Home Manager needs a bit of information about you and the
# paths it should manage.
home.username = "osbm";
@ -95,12 +92,12 @@ in
{
plugin = tmux-dracula;
extraConfig = ''
set -g @dracula-plugins "custom:wanikani.sh cpu-usage ram-usage gpu-usage battery time"
set -g @dracula-show-left-icon hostname
set -g @dracula-git-show-current-symbol
set -g @dracula-git-no-repo-message "no-git"
set -g @dracula-show-timezone false
set -g @dracula-ignore-lspci true
set -g @dracula-plugins "custom:wanikani.sh cpu-usage ram-usage gpu-usage battery time"
set -g @dracula-show-left-icon hostname
set -g @dracula-git-show-current-symbol
set -g @dracula-git-no-repo-message "no-git"
set -g @dracula-show-timezone false
set -g @dracula-ignore-lspci true
'';
}
];