mirror of
https://github.com/softinio/nix-config.git
synced 2025-09-05 09:06:42 -07:00
12 lines
152 B
Nix
12 lines
152 B
Nix
|
{ ... }:
|
||
|
|
||
|
let
|
||
|
weztermConfig = builtins.readFile ./wezterm.lua;
|
||
|
in
|
||
|
{
|
||
|
programs.wezterm = {
|
||
|
enable = true;
|
||
|
extraConfig = weztermConfig;
|
||
|
};
|
||
|
}
|