Skip to content

Commit

Permalink
update paths
Browse files Browse the repository at this point in the history
  • Loading branch information
taranarmo committed Dec 30, 2024
1 parent 3bd42bc commit c441571
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 6 deletions.
4 changes: 2 additions & 2 deletions modules/home-manager/wezterm.nix
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,14 @@ in

config = lib.mkIf cfg.enable {
programs.wezterm = {
colorSchemes = lib.importTOML "${sources.wezterm}/catppuccin-${cfg.flavor}.toml";
colorSchemes = lib.importTOML "${sources.wezterm}/dist/catppuccin-${cfg.flavor}.toml";
extraConfig = lib.mkBefore ''
local config = {}
if wezterm.c_builder then
config = wezterm.config_builder()
end
require("${sources.wezterm}/init.lua").apply_to_config(config)
dofile("${sources.wezterm}/plugin/init.lua").apply_to_config(config)
'';
};
};
Expand Down
5 changes: 1 addition & 4 deletions pkgs/wezterm/package.nix
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,5 @@
buildCatppuccinPort {
pname = "wezterm";

installTargets = [
"dist/"
"plugin/"
];
installTargets = [ "dist" "plugin" ];
}

0 comments on commit c441571

Please sign in to comment.