aboutsummaryrefslogtreecommitdiff
path: root/modules/terminal/system/programs/broot.nix
diff options
context:
space:
mode:
authorCollin Williams <96917990+bluedragon1221@users.noreply.github.com>2025-09-01 15:46:40 -0500
committerCollin Williams <96917990+bluedragon1221@users.noreply.github.com>2025-09-01 15:46:40 -0500
commit464e39e3d96b513c0ae9d9b07bcc5ae47b48e622 (patch)
treeb95a6cce1bf4a540d5c777c7f01fc9864d82a26f /modules/terminal/system/programs/broot.nix
parenteb4c6fa1ba1e3a3bfe2291727bc89e0928139b8e (diff)
start using the terminal more on jupiter => make some changes
Diffstat (limited to 'modules/terminal/system/programs/broot.nix')
-rw-r--r--modules/terminal/system/programs/broot.nix29
1 files changed, 15 insertions, 14 deletions
diff --git a/modules/terminal/system/programs/broot.nix b/modules/terminal/system/programs/broot.nix
index b2060d8..fdb480a 100644
--- a/modules/terminal/system/programs/broot.nix
+++ b/modules/terminal/system/programs/broot.nix
@@ -4,21 +4,22 @@
lib,
...
}: let
- cfg = config.collinux.terminal.shells.fish;
+ cfg = config.collinux.terminal.programs.broot;
- conf = {
- skin = catppuccin_skin;
- verbs = [
- {
- name = "open-code";
- key = "enter";
- execution = "$EDITOR +{line} {file}";
- working_dir = "{root}";
- apply_to = "file";
- leave_broot = true;
- }
- ];
- };
+ conf =
+ {
+ verbs = [
+ {
+ name = "open-code";
+ key = "enter";
+ execution = "$EDITOR +{line} {file}";
+ working_dir = "{root}";
+ apply_to = "file";
+ leave_broot = true;
+ }
+ ];
+ }
+ // (lib.optionalAttrs (cfg.theme == "catppuccin") {skin = catppuccin_skin;});
catppuccin_skin = {
input = "rgb(205, 214, 244) none";