linuxware/programs/wezterm/config.nix

10 lines
169 B
Nix
Raw Normal View History

{ pkgs, ... }:
2023-11-05 04:53:31 -03:00
{
programs.wezterm = {
enable = true;
extraConfig = builtins.readFile ./wezterm.lua;
package = (pkgs.callPackage ./package.nix {});
2023-11-05 04:53:31 -03:00
};
}