mirror of
https://github.com/nmasur/dotfiles
synced 2025-12-03 06:02:42 +00:00
fix jjui on darwin
This commit is contained in:
@@ -34,6 +34,9 @@ in
|
|||||||
home.packages = [
|
home.packages = [
|
||||||
# Required for the fsmonitor to auto-snapshot
|
# Required for the fsmonitor to auto-snapshot
|
||||||
pkgs.watchman
|
pkgs.watchman
|
||||||
|
|
||||||
|
# Required to be on path to work in Zellij
|
||||||
|
pkgs.jjui
|
||||||
];
|
];
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -189,9 +189,15 @@ in
|
|||||||
};
|
};
|
||||||
"bind \"Alt Shift j\"" = {
|
"bind \"Alt Shift j\"" = {
|
||||||
Run = {
|
Run = {
|
||||||
_args = [
|
_args =
|
||||||
|
if pkgs.stdenv.isDarwin then
|
||||||
|
[
|
||||||
|
"env"
|
||||||
|
"PATH=${config.home.homeDirectory}/.nix-profile/bin:/usr/bin"
|
||||||
(lib.getExe pkgs.jjui)
|
(lib.getExe pkgs.jjui)
|
||||||
];
|
]
|
||||||
|
else
|
||||||
|
[ (lib.getExe pkgs.jjui) ];
|
||||||
close_on_exit = true;
|
close_on_exit = true;
|
||||||
floating = true;
|
floating = true;
|
||||||
x = "1%";
|
x = "1%";
|
||||||
|
|||||||
Reference in New Issue
Block a user