mirror of
https://github.com/foo-dogsquared/nixos-config.git
synced 2025-01-31 16:57:55 +00:00
23 lines
559 B
Nix
23 lines
559 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
{
|
|
build.variant = "shell";
|
|
locale.enable = true;
|
|
|
|
wrappers.tmux = {
|
|
wraparound.variant = "boxxy";
|
|
wraparound.subwrapper.arg0 = lib.getExe' pkgs.tmux "tmux";
|
|
wraparound.boxxy.rules = {
|
|
"~/.config/tmux/tmux.conf".source = "~/.tmux.conf";
|
|
};
|
|
};
|
|
|
|
wrappers.zellij = {
|
|
wraparound.variant = "boxxy";
|
|
wraparound.subwrapper.arg0 = lib.getExe' pkgs.zellij "zellij";
|
|
wraparound.boxxy.rules = {
|
|
"$XDG_CONFIG_HOME/zellij/hello.kdl".source = "$XDG_CONFIG_HOME/zellij/config.kdl";
|
|
};
|
|
};
|
|
}
|