diff --git a/modules/home-manager/wezterm/config.lua b/modules/home-manager/wezterm/config.lua index 7767b57..a642934 100644 --- a/modules/home-manager/wezterm/config.lua +++ b/modules/home-manager/wezterm/config.lua @@ -105,6 +105,16 @@ config.keys = { mods = 'CTRL|SHIFT', action = wezterm.action.ActivateCommandPalette }, + { + key = 'w', + mods = 'CTRL|SHIFT', + action = wezterm.action.CloseCurrentPane { confirm = true }, + }, + { + key = 'w', + mods = 'CTRL|ALT|SHIFT', + action = wezterm.action.CloseCurrentTab { confirm = true }, + }, { key = 'l', mods = 'CTRL|SHIFT|ALT', diff --git a/nixos/foxtrot.nix b/nixos/foxtrot.nix index 7acc00f..ece06e4 100644 --- a/nixos/foxtrot.nix +++ b/nixos/foxtrot.nix @@ -187,10 +187,10 @@ in { powerOnBoot = false; }; powerManagement.cpuFreqGovernor = "ondemand"; - powerManagement.resumeCommands = '' - modprobe -rv mt7921e - modprobe -v mt7921e - ''; + # powerManagement.resumeCommands = '' + # modprobe -rv mt7921e + # modprobe -v mt7921e + # ''; services.power-profiles-daemon = { enable = true;