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

@ -31,5 +31,4 @@
]; ];
services.openssh.enable = true; services.openssh.enable = true;
} }

View file

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