• Relocates common configurations from a user-specific directory to a global hierarchy • Adds host-specific files and updates import paths for better modularity • Introduces an experimental GNOME mutter feature
10 lines
195 B
Nix
10 lines
195 B
Nix
{
|
|
programs.zoxide = {
|
|
enable = true;
|
|
enableBashIntegration = true;
|
|
enableFishIntegration = true;
|
|
options = [
|
|
"--cmd cd" # replace cd with z and zi (via cdi)
|
|
];
|
|
};
|
|
}
|