mirror of
https://forge.katzen.cafe/schrottkatze/nix-configs.git
synced 2026-04-13 13:32:09 +02:00
23 lines
444 B
Nix
23 lines
444 B
Nix
{ pkgs, ... }:
|
|
{
|
|
home = {
|
|
packages = [ pkgs.mprocs ];
|
|
};
|
|
xdg.configFile."mprocs/mprocs.yaml" = {
|
|
text = builtins.toJSON {
|
|
proc_list_width = 15;
|
|
keymap_procs = {
|
|
"<l>" = {
|
|
c = "toggle-focus";
|
|
};
|
|
};
|
|
keymap_term = {
|
|
"<C-a>" = null;
|
|
# Ctrl-m so it doesnt overlap with zellij or helix
|
|
"<C-M>" = {
|
|
c = "toggle-focus";
|
|
};
|
|
};
|
|
};
|
|
};
|
|
}
|