1
0
Fork 0
mirror of https://github.com/nix-community/home-manager.git synced 2025-11-21 17:59:39 +01:00
home-manager/tests/modules/programs/wezterm/empty-setting.nix
B1kku 542078066b
wezterm: don't create config if extraConfig is empty, and don't create one by default (#6908)
Tests updated to check the file wasn't created when no config is
provided.
2025-04-25 10:11:18 -05:00

9 lines
139 B
Nix

{
programs.wezterm = {
enable = true;
};
nmt.script = ''
assertPathNotExists home-files/.config/wezterm/wezterm.lua
'';
}