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";
|
|
|
|
};
|
|
|
|
};
|
2024-02-24 17:22:30 -06:00
|
|
|
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
|
|
fzy
|
|
|
|
];
|
2023-12-28 00:20:13 -06:00
|
|
|
}
|