10 lines
148 B
Nix
10 lines
148 B
Nix
{ config, ... }:
|
|
|
|
{
|
|
home-manager.users.toast = { config, ... }: {
|
|
programs.bash = {
|
|
enable = true;
|
|
enableVteIntegration = true;
|
|
};
|
|
};
|
|
}
|