mirror of
https://github.com/nix-community/home-manager
synced 2024-11-01 16:59:43 +01:00
dfe4d334b1
The semi-colon breaks this config file, it is not in the Weztem documentation either.
22 lines
447 B
Nix
22 lines
447 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}
|
|
'';
|
|
}
|