flake/users/guanranwang/home-manager/resources/shell/bash.nix
2023-11-05 17:21:37 +08:00

6 lines
128 B
Nix

{config, ...}: {
programs.bash = {
enable = true;
historyFile = "${config.xdg.configHome}/bash/.bash_history";
};
}