12 lines
215 B
Nix
12 lines
215 B
Nix
|
{ config, lib, ... }:
|
||
|
{
|
||
|
config = lib.mkIf config.shelman.desktop.enable {
|
||
|
|
||
|
programs.wezterm = {
|
||
|
enable = true;
|
||
|
extraConfig = builtins.readFile ./../files/config/wezterm/wezterm.lua;
|
||
|
};
|
||
|
|
||
|
};
|
||
|
}
|