fix(home/zsh.nix): correct path for commitFunctions

- Updated the path to correctly place `commits.sh` inside the `bin` directory
This commit is contained in:
Giulio De Pasquale 2024-11-17 20:16:01 +00:00
parent 58e2b8dab7
commit 227c289967

View File

@ -1,7 +1,7 @@
{ pkgs, lib, ... }:
{ pkgs, ... }:
let
commitFunctions = pkgs.writeTextDir "bin" (builtins.readFile ./scripts/commits.sh);
commitFunctions = pkgs.writeTextDir "bin/commits.sh" (builtins.readFile ./scripts/commits.sh);
in
{
home.packages = with pkgs; [ any-nix-shell ];