move broot to its own file
This commit is contained in:
parent
cbeb9fd9ea
commit
ed6a9a88bf
20
home.nix
20
home.nix
|
@ -111,26 +111,6 @@
|
|||
enable = true;
|
||||
};
|
||||
|
||||
programs.broot = {
|
||||
enable = true;
|
||||
enableFishIntegration = true;
|
||||
settings = {
|
||||
modal = true;
|
||||
verbs = [
|
||||
{
|
||||
invocation = "panel_right";
|
||||
key = "alt-right";
|
||||
internal = ":panel_right";
|
||||
}
|
||||
{
|
||||
invocation = "panel_left_no_open";
|
||||
key = "alt-left";
|
||||
internal = ":panel_left_no_open";
|
||||
}
|
||||
];
|
||||
};
|
||||
};
|
||||
|
||||
programs.btop = {
|
||||
enable = true;
|
||||
};
|
||||
|
|
25
programs/broot/default.nix
Normal file
25
programs/broot/default.nix
Normal file
|
@ -0,0 +1,25 @@
|
|||
{ config, pkgs, ... }:
|
||||
let
|
||||
myverbs = [
|
||||
{
|
||||
invocation = "panel_right";
|
||||
key = "alt-right";
|
||||
internal = ":panel_right";
|
||||
}
|
||||
{
|
||||
invocation = "panel_left_no_open";
|
||||
key = "alt-left";
|
||||
internal = ":panel_left_no_open";
|
||||
}
|
||||
];
|
||||
in
|
||||
{
|
||||
programs.broot = {
|
||||
enable = true;
|
||||
enableFishIntegration = true;
|
||||
settings = {
|
||||
modal = true;
|
||||
verbs = myverbs;
|
||||
};
|
||||
};
|
||||
}
|
|
@ -1,4 +1,5 @@
|
|||
[
|
||||
./broot
|
||||
./fish
|
||||
./git
|
||||
./tmux
|
||||
|
|
Loading…
Reference in a new issue