about summary refs log tree commit diff
path: root/modules/shell/tmux/default.nix
blob: e1abecae066450af484b69c53bde68274e181801 (plain) (blame)
1
2
3
4
5
6
7
8
{ pkgs, ... }:

{
  users.users.qyliss.xdg.config.paths."tmux/tmux.conf" =
    with pkgs; writeText "tmux.conf" (callPackage ./config.nix { });

  environment.systemPackages = with pkgs; [ tmux ];
}