Skip to content

Commit

Permalink
hm: rename scripts to not start with .
Browse files Browse the repository at this point in the history
fixes errors like:
> Nix error: store path 'wd5hn80m8r47cjjp711mcgvqvfhjcr4i-.p10k.zsh' starts with illegal character '.'
  • Loading branch information
ifd3f committed Oct 18, 2024
1 parent 6d13b4d commit 8b92764
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion nix/home-manager/astral/cli/.gitattributes
Original file line number Diff line number Diff line change
@@ -1 +1 @@
.p10k.zsh linguist-vendored
p10k.zsh linguist-vendored
4 changes: 2 additions & 2 deletions nix/home-manager/astral/cli/default.nix
Original file line number Diff line number Diff line change
@@ -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 ];

Expand Down Expand Up @@ -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)
Expand Down
File renamed without changes.
File renamed without changes.

0 comments on commit 8b92764

Please sign in to comment.