nixos/modules/home/tmux/default.nix

9 lines
146 B
Nix
Raw Permalink Normal View History

2023-01-11 20:22:35 +00:00
{ pkgs, lib, config, ... }:
{
home-manager.users.jake.programs.tmux = {
enable = true;
extraConfig = lib.readFile ./.tmux.conf;
};
}