pointfichiers/shell/bash/default.nix
2024-10-01 08:06:55 +02:00

17 lines
278 B
Nix

{pkgs, ...}: {
programs.bash = {
enable = true;
bashrcExtra = ". ${./.bashrc}";
};
home.file = {
".bash_aliases".source = ./.bash_aliases;
".bash_exec".source = ./.bash_exec;
};
home.packages = [
pkgs.starship
pkgs.zoxide
pkgs.lsd
];
}