tmux-sessionizer: formatting
parent
ab7ae9e503
commit
eed13824b8
|
@ -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
|
||||
'';
|
||||
};
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in New Issue