pointfichiers/shell/bash/default.nix

17 lines
265 B
Nix
Raw Normal View History

{pkgs, ...}: {
2024-09-18 14:15:14 +02:00
programs.bash = {
enable = true;
bashrcExtra = ". ${./.bashrc}";
};
2024-09-18 13:44:20 +02:00
home.file = {
".bash_aliases".source = ./.bash_aliases;
".bash_exec".source = ./.bash_exec;
};
2024-09-18 13:44:20 +02:00
home.packages = [
pkgs.starship
pkgs.zoxide
2024-09-18 13:44:20 +02:00
];
}