nix-stuff/roles/common/programs/bash.nix

8 lines
155 B
Nix

{config, ...}: {
home-manager.users.toast = {config, ...}: {
programs.bash = {
enable = true;
enableVteIntegration = true;
};
};
}