pointfichiers/shell/bash/default.nix
2024-09-18 14:15:14 +02:00

19 lines
261 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
];
}