nixos/home/tui/tmux.nix

21 lines
497 B
Nix
Raw Normal View History

2023-05-17 17:10:18 +01:00
{pkgs, ...}: {
imports = [./common.nix];
programs.tmux = {
enable = true;
clock24 = true;
2023-05-17 17:10:18 +01:00
extraConfig =
builtins.readFile ./config/tmux.conf
+ "\n"
+ builtins.readFile (
pkgs.fetchFromGitHub
{
owner = "catppuccin";
repo = "tmux";
rev = "4e48b09a76829edc7b55fbb15467cf0411f07931";
sha256 = "bXEsxt4ozl3cAzV3ZyvbPsnmy0RAdpLxHwN82gvjLdU=";
2023-05-17 17:10:18 +01:00
}
+ "/catppuccin-macchiato.tmuxtheme"
);
};
}