dot_testing/modules/bash.nix
2024-02-24 17:22:30 -06:00

18 lines
346 B
Nix

{ 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
];
}