nix-stuff/roles/common/programs/bash.nix
2024-03-20 13:03:05 +01:00

8 lines
139 B
Nix

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