13 lines
189 B
Nix
13 lines
189 B
Nix
|
{
|
||
|
lib,
|
||
|
osConfig,
|
||
|
...
|
||
|
}: {
|
||
|
config = lib.mkIf osConfig.local.profiles.desktop.enable {
|
||
|
programs.zoxide = {
|
||
|
enable = true;
|
||
|
enableBashIntegration = false;
|
||
|
};
|
||
|
};
|
||
|
}
|