From eed13824b823b66203006ead7d33206749c78c37 Mon Sep 17 00:00:00 2001 From: Zynh Ludwig Date: Fri, 9 Aug 2024 00:59:51 -0700 Subject: [PATCH] tmux-sessionizer: formatting --- home/modules/tmux-sessionizer.nix | 40 +++++++++++++++---------------- 1 file changed, 19 insertions(+), 21 deletions(-) diff --git a/home/modules/tmux-sessionizer.nix b/home/modules/tmux-sessionizer.nix index 70752f3..7c8846c 100644 --- a/home/modules/tmux-sessionizer.nix +++ b/home/modules/tmux-sessionizer.nix @@ -9,29 +9,27 @@ let enable = cfg.enable && tmuxCfg.enable; in { - options = { - snowhawk.tmux.sessionizer = { - enable = lib.mkEnableOption "tmux-sessionizer home-manager module"; + options.snowhawk.tmux.sessionizer = { + enable = lib.mkEnableOption "tmux-sessionizer home-manager module"; - paths = lib.mkOption { - type = with lib.types; listOf str; - description = '' - list of paths to select with tmux-sessionizer - ''; - default = [ ]; - example = [ - "~" - "~/projects" - "~/src" - ]; - }; + paths = lib.mkOption { + type = with lib.types; listOf str; + description = '' + list of paths to select with tmux-sessionizer + ''; + default = [ ]; + example = [ + "~" + "~/projects" + "~/src" + ]; + }; - pkg = lib.mkOption { - type = lib.types.package; - description = '' - tmux-sessionizer binary package - ''; - }; + pkg = lib.mkOption { + type = lib.types.package; + description = '' + tmux-sessionizer binary package + ''; }; };