pointfichiers/shell/bash/default.nix
2024-09-18 13:44:20 +02:00

18 lines
292 B
Nix

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