12 lines
167 B
Nix
12 lines
167 B
Nix
{ config, pkgs, ... }:
|
|
|
|
let
|
|
weztermConfig = builtins.readFile ./wezterm.lua;
|
|
in
|
|
{
|
|
programs.wezterm = {
|
|
enable = true;
|
|
extraConfig = weztermConfig;
|
|
};
|
|
}
|