12 lines
192 B
Nix
12 lines
192 B
Nix
{ pkgs, ... }:
|
|
{
|
|
programs.wezterm = {
|
|
enable = true;
|
|
extraConfig = ''
|
|
return {
|
|
-- enable_wayland = false
|
|
}
|
|
'';
|
|
};
|
|
stylix.targets.wezterm.enable = true;
|
|
}
|