niksos/hosts/common/desktop/zoxide.nix

13 lines
263 B
Nix

{
config,
...
}: let
inherit (config.poz.other.system) username;
in {
home-manager.users.${username} = {
programs.zoxide = {
enable = true;
enableZshIntegration = config.poz.programs.zsh.enable;
};
};
}