From c92953a5e3ed956d72fd754ba7fd616946e87797 Mon Sep 17 00:00:00 2001 From: osbm Date: Tue, 4 Feb 2025 18:31:48 +0300 Subject: [PATCH] formatting --- hosts/iso/configuration.nix | 1 - modules/home.nix | 21 +++++++++------------ 2 files changed, 9 insertions(+), 13 deletions(-) diff --git a/hosts/iso/configuration.nix b/hosts/iso/configuration.nix index 9e1a04a..aae5c6a 100644 --- a/hosts/iso/configuration.nix +++ b/hosts/iso/configuration.nix @@ -31,5 +31,4 @@ ]; services.openssh.enable = true; - } diff --git a/modules/home.nix b/modules/home.nix index a934982..2767ee8 100644 --- a/modules/home.nix +++ b/modules/home.nix @@ -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 ''; } ];