Added a first draft at ZSH
All checks were successful
Check config / build (push) Successful in 9m49s

This commit is contained in:
Alexandre 2026-06-23 17:31:16 +00:00
parent c43507365a
commit 0a46026cea
2 changed files with 14 additions and 1 deletions

View File

@ -0,0 +1,13 @@
{ self, inputs, ... }: {
flake = {
homeModules.shell = { pkgs, lib, ... }: {
programs.zsh = {
enable = true;
package = pkgs.zsh;
enableCompletion = true;
autocd = true;
initContent = lib.getExe self.packages.${pkgs.stdenv.hostPlatform.system}.myFastfetch;
};
};
};
}

View File

@ -7,7 +7,7 @@
flake.homeModules.sysFetch = { pkgs, lib, ... }: {
programs.fastfetch = {
enable = true;
package = self.packages.${pkgs.stdenv.hostPlatform.system}.myFastfetch;
package = pkgs.fastfetch; #self.packages.${pkgs.stdenv.hostPlatform.system}.myFastfetch;
};
};