mirror of
https://forge.katzen.cafe/schrottkatze/nix-configs.git
synced 2024-11-05 15:16:23 +01:00
25 lines
495 B
Nix
25 lines
495 B
Nix
{...}: {
|
|
home-manager.users.jade = {
|
|
pkgs,
|
|
lib,
|
|
...
|
|
}: {
|
|
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";};
|
|
};
|
|
};
|
|
};
|
|
};
|
|
}
|