dot_testing/modules/bash.nix

18 lines
346 B
Nix
Raw Normal View History

2023-12-28 00:20:13 -06:00
{ lib, config, pkgs, ...}:
{
# make the home-manager .config/bash/(profile/bashrc) work
environment.etc = {
"profile.local" = {
text = "source /home/usr/.config/bash/profile";
};
"bashrc.local" = {
text = "source /home/usr/.config/bash/bashrc";
};
};
environment.systemPackages = with pkgs; [
fzy
];
2023-12-28 00:20:13 -06:00
}