mirror of https://github.com/sgoudham/dotfiles.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
582 B
Nix
25 lines
582 B
Nix
{
|
|
config,
|
|
flakePath,
|
|
...
|
|
}: {
|
|
# Sleep well my prince, one day you will be enabled
|
|
# programs.wezterm = {
|
|
# enable = true;
|
|
# package = pkgs.nur.repos.nekowinston.wezterm-nightly;
|
|
# };
|
|
# xdg.configFile."wezterm/wezterm.lua".enable = false;
|
|
|
|
xdg.configFile."wezterm" = {
|
|
source = config.lib.file.mkOutOfStoreSymlink "${flakePath}/home/apps/wezterm";
|
|
recursive = true;
|
|
};
|
|
|
|
home.file = {
|
|
".terminfo/w/wezterm_terminfo" = {
|
|
source = wezterm/wezterm_terminfo;
|
|
onChange = "tic -x -o .terminfo .terminfo/w/wezterm_terminfo";
|
|
};
|
|
};
|
|
}
|