18 lines
292 B
Nix
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
|
|
];
|
|
}
|
|
|