mirror of
https://github.com/nix-community/home-manager
synced 2024-11-01 08:49:44 +01:00
f92a54fef4
Closes: #4426
22 lines
448 B
Nix
22 lines
448 B
Nix
{ ... }:
|
|
|
|
{
|
|
programs.wezterm = { enable = true; };
|
|
|
|
test.stubs.wezterm = { };
|
|
|
|
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}
|
|
'';
|
|
}
|