diff --git a/nix/home-manager/astral/cli/.gitattributes b/nix/home-manager/astral/cli/.gitattributes index 85042d28..5c03e9d1 100644 --- a/nix/home-manager/astral/cli/.gitattributes +++ b/nix/home-manager/astral/cli/.gitattributes @@ -1 +1 @@ -.p10k.zsh linguist-vendored +p10k.zsh linguist-vendored diff --git a/nix/home-manager/astral/cli/default.nix b/nix/home-manager/astral/cli/default.nix index 429fca11..a5c2ec00 100644 --- a/nix/home-manager/astral/cli/default.nix +++ b/nix/home-manager/astral/cli/default.nix @@ -1,6 +1,6 @@ # CLI-only home manager settings { config, lib, pkgs, ... }: -let commonProfile = builtins.readFile ./.profile; +let commonProfile = builtins.readFile ./profile.sh; in with lib; { imports = [ ./conda-hooks.nix ]; @@ -107,7 +107,7 @@ in with lib; { initExtraBeforeCompInit = '' # Powerlevel10k configuration - source ${./.p10k.zsh} + source ${./p10k.zsh} # kubectl completion type kubectl > /dev/null && source <(kubectl completion zsh) diff --git a/nix/home-manager/astral/cli/.p10k.zsh b/nix/home-manager/astral/cli/p10k.zsh similarity index 100% rename from nix/home-manager/astral/cli/.p10k.zsh rename to nix/home-manager/astral/cli/p10k.zsh diff --git a/nix/home-manager/astral/cli/.profile b/nix/home-manager/astral/cli/profile.sh similarity index 100% rename from nix/home-manager/astral/cli/.profile rename to nix/home-manager/astral/cli/profile.sh