mirror of
https://github.com/nix-community/home-manager.git
synced 2025-03-10 02:36:54 +00:00
13 lines
231 B
Nix
13 lines
231 B
Nix
|
{
|
||
|
programs.bash.enable = true;
|
||
|
|
||
|
programs.wezterm = {
|
||
|
enable = true;
|
||
|
enableBashIntegration = false;
|
||
|
};
|
||
|
|
||
|
nmt.script = ''
|
||
|
assertFileNotRegex home-files/.bashrc 'source "@wezterm@/etc/profile.d/wezterm.sh"'
|
||
|
'';
|
||
|
}
|