flake/home/applications/bash/default.nix
2024-01-17 19:53:00 +08:00

6 lines
128 B
Nix

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