nixos-config/home-manager/terminal.nix

8 lines
111 B
Nix
Raw Normal View History

2024-08-21 13:39:57 +02:00
{ ... }:
2024-06-24 21:53:35 +02:00
{
2024-08-21 13:39:57 +02:00
programs.wezterm = {
2024-06-24 21:53:35 +02:00
enable = true;
2024-08-21 13:39:57 +02:00
extraConfig = builtins.readFile ./wezterm.lua;
2024-06-24 21:53:35 +02:00
};
}