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

10 lines
148 B
Nix

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