nix/home/programs/murex.nix
2024-10-09 21:34:09 +11:00

31 lines
465 B
Nix

{pkgs, ...}: {
programs.murex = {
enable = true;
useXdgConfig = true;
direnv = true;
managePlugins = true;
profile = ''
config: set shell auto-cd true
'';
plugins = let
inherit
(pkgs)
murex-jump
murex-starship
;
in [
murex-jump
murex-starship
];
};
programs.starship = {
enable = true;
};
home.packages = let
inherit (pkgs) jump;
in [
jump
];
}