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