mirror of
https://github.com/nix-community/home-manager.git
synced 2025-11-30 22:21:02 +01:00
22 lines
442 B
Nix
22 lines
442 B
Nix
{
|
|
programs.wezterm = {
|
|
enable = true;
|
|
};
|
|
|
|
nmt.script =
|
|
let
|
|
expected = builtins.toFile "wezterm.lua" ''
|
|
-- Generated by Home Manager.
|
|
-- See https://wezfurlong.org/wezterm/
|
|
|
|
local wezterm = require 'wezterm'
|
|
|
|
return {}
|
|
|
|
'';
|
|
in
|
|
''
|
|
assertFileExists home-files/.config/wezterm/wezterm.lua
|
|
assertFileContent home-files/.config/wezterm/wezterm.lua ${expected}
|
|
'';
|
|
}
|