flake/home/applications/bash/default.nix

8 lines
130 B
Nix
Raw Normal View History

{ config, ... }:
{
2023-11-05 09:21:37 +00:00
programs.bash = {
enable = true;
historyFile = "${config.xdg.configHome}/bash/.bash_history";
};
}