tmux-sessionizer: formatting
parent
ab7ae9e503
commit
eed13824b8
|
@ -9,29 +9,27 @@ let
|
||||||
enable = cfg.enable && tmuxCfg.enable;
|
enable = cfg.enable && tmuxCfg.enable;
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
options = {
|
options.snowhawk.tmux.sessionizer = {
|
||||||
snowhawk.tmux.sessionizer = {
|
enable = lib.mkEnableOption "tmux-sessionizer home-manager module";
|
||||||
enable = lib.mkEnableOption "tmux-sessionizer home-manager module";
|
|
||||||
|
|
||||||
paths = lib.mkOption {
|
paths = lib.mkOption {
|
||||||
type = with lib.types; listOf str;
|
type = with lib.types; listOf str;
|
||||||
description = ''
|
description = ''
|
||||||
list of paths to select with tmux-sessionizer
|
list of paths to select with tmux-sessionizer
|
||||||
'';
|
'';
|
||||||
default = [ ];
|
default = [ ];
|
||||||
example = [
|
example = [
|
||||||
"~"
|
"~"
|
||||||
"~/projects"
|
"~/projects"
|
||||||
"~/src"
|
"~/src"
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|
||||||
pkg = lib.mkOption {
|
pkg = lib.mkOption {
|
||||||
type = lib.types.package;
|
type = lib.types.package;
|
||||||
description = ''
|
description = ''
|
||||||
tmux-sessionizer binary package
|
tmux-sessionizer binary package
|
||||||
'';
|
'';
|
||||||
};
|
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue