1
0
Fork 0
dotfiles/home/programs/wezterm.nix

39 lines
806 B
Nix
Raw Normal View History

2022-12-19 21:02:48 +00:00
{ pkgs, ... }:
{
programs.wezterm = {
enable = true;
extraConfig = ''
_G.default_shell = { '${pkgs.fish.outPath}/bin/fish', '--interactive'};
local cfg = require('config');
return cfg
'';
};
xdg.configFile."wezterm" = {
source = pkgs.runCommand "wezterm-fennel-files"
{
nativeBuildInputs = with pkgs; [ lua53Packages.fennel stylua ];
} ''
mkdir -p $out
config_store_path="${../config/wezterm}"
fennel="fennel --use-bit-lib --compile"
echo "Using fennel command: $fennel"
# Change PWD to config directory
cd "$config_store_path"
# Init
echo "Compiling init.fnl ..."
$fennel "$config_store_path/config.fnl" > "$out/config.lua"
stylua "$out/"
'';
recursive = true;
};
}