diff options
| author | Collin Williams <96917990+bluedragon1221@users.noreply.github.com> | 2026-05-22 10:23:58 -0500 |
|---|---|---|
| committer | Collin Williams <96917990+bluedragon1221@users.noreply.github.com> | 2026-05-22 10:24:06 -0500 |
| commit | 35af4bab99da94845ebd6e9b2efae6a544d39b35 (patch) | |
| tree | 47c6f76b47f1012932729c9f693316df1512197a /modules/terminal/hjem/programs | |
| parent | 2e0c6ccbbc76cc36e92128aea44e4bdd4e5c3d0a (diff) | |
LOTS OF TEMP STUFF
Diffstat (limited to 'modules/terminal/hjem/programs')
| -rw-r--r-- | modules/terminal/hjem/programs/broot.nix | 7 | ||||
| -rw-r--r-- | modules/terminal/hjem/programs/git.nix | 9 | ||||
| -rw-r--r-- | modules/terminal/hjem/programs/tmux.nix | 46 |
3 files changed, 32 insertions, 30 deletions
diff --git a/modules/terminal/hjem/programs/broot.nix b/modules/terminal/hjem/programs/broot.nix index 59f16aa..cd425bd 100644 --- a/modules/terminal/hjem/programs/broot.nix +++ b/modules/terminal/hjem/programs/broot.nix @@ -7,9 +7,10 @@ cfg = config.collinux.terminal.programs.broot; conf = { - imports = [ - "skins/catppuccin-mocha.hjson" - ]; + imports = + if config.collinux.theme == "catppuccin" + then ["skins/catppuccin-mocha.hjson"] + else ["skins/dark-gruvbox.hjson"]; default_flags = "-g"; icon_theme = "nerdfont"; diff --git a/modules/terminal/hjem/programs/git.nix b/modules/terminal/hjem/programs/git.nix index 918381c..85db4ab 100644 --- a/modules/terminal/hjem/programs/git.nix +++ b/modules/terminal/hjem/programs/git.nix @@ -8,15 +8,16 @@ git_config = lib.mkMerge [ { + user = { + email = cfg.userEmail; + name = cfg.userName; + }; alias = { stage = "add"; unstage = "restore --staged"; }; init.defaultBranch = "main"; - user = { - email = cfg.userEmail; - name = cfg.userName; - }; + push.autoSetupRemote = true; } (lib.mkIf cfg.installKey { # commit signing diff --git a/modules/terminal/hjem/programs/tmux.nix b/modules/terminal/hjem/programs/tmux.nix index 2c87212..2d7155e 100644 --- a/modules/terminal/hjem/programs/tmux.nix +++ b/modules/terminal/hjem/programs/tmux.nix @@ -7,30 +7,30 @@ }: let cfg = config.collinux.terminal.programs.tmux; in { - imports = [ - inputs.tmux-tsunami.hjemModules.tsunami - ]; + # imports = [ + # inputs.tmux-tsunami.hjemModules.tsunami + # ]; - config = lib.mkIf cfg.enable { - tsunami = { - enable = true; + # config = lib.mkIf cfg.enable { + # tsunami = { + # enable = true; - theme = { - bg = "#${config.collinux.palette.base00}"; - bg_dark = "#${config.collinux.palette.base01}"; - }; + # theme = { + # bg = "#${config.collinux.palette.base00}"; + # bg_dark = "#${config.collinux.palette.base01}"; + # }; - keys.leader = [ - { - name = "Lazygit"; - key = "C-g"; - exec = "display-popup -E -w 80% -h 80% -x C -y C -d '#{?@default-path,#{@default-path},#{pane_current_path}}' ${lib.getExe pkgs.lazygit}"; - } - ]; - confs."main" = '' - set -g mouse on - set-window-option -g mode-keys vi - ''; - }; - }; + # keys.leader = [ + # { + # name = "Lazygit"; + # key = "C-g"; + # exec = "display-popup -E -w 80% -h 80% -x C -y C -d '#{?@default-path,#{@default-path},#{pane_current_path}}' ${lib.getExe pkgs.lazygit}"; + # } + # ]; + # confs."main" = '' + # set -g mouse on + # set-window-option -g mode-keys vi + # ''; + # }; + # }; } |
