nixos/home/tui/tmux.nix

17 lines
387 B
Nix

{pkgs, ...}: {
programs.tmux = {
enable = true;
clock24 = true;
extraConfig = builtins.readFile (
pkgs.fetchFromGitHub
{
owner = "catppuccin";
repo = "tmux";
rev = "4e48b09a76829edc7b55fbb15467cf0411f07931";
sha256 = "bXEsxt4ozl3cAzV3ZyvbPsnmy0RAdpLxHwN82gvjLdU=";
}
+ "/catppuccin-macchiato.tmuxtheme"
);
};
}