Alexandre 0a46026cea
All checks were successful
Check config / build (push) Successful in 9m49s
Added a first draft at ZSH
2026-06-23 17:31:16 +00:00

14 lines
331 B
Nix

{ 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;
};
};
};
}