mirror of
https://github.com/foo-dogsquared/nixos-config.git
synced 2025-01-31 10:58:02 +00:00
15 lines
356 B
Nix
15 lines
356 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
{
|
|
wrappers.tmux-fds.wraparound = {
|
|
variant = "boxxy";
|
|
subwrapper.arg0 = lib.getExe' pkgs.tmux "tmux";
|
|
boxxy.rules."~/.config/tmux/tmux.conf".source = "~/.tmux.conf";
|
|
};
|
|
|
|
wrappers.zellij-fds = {
|
|
arg0 = lib.getExe' pkgs.zellij "zellij";
|
|
env.ZELLIJ_CONFIG_FILE.value = ./config/zellij/config.kdl;
|
|
};
|
|
}
|