niksos/hosts/common/desktop/zoxide.nix

14 lines
263 B
Nix
Raw Normal View History

2024-10-02 17:34:54 +02:00
{
config,
...
}: let
inherit (config.poz.other.system) username;
in {
home-manager.users.${username} = {
programs.zoxide = {
enable = true;
enableZshIntegration = config.poz.programs.zsh.enable;
};
};
}