Files
nixconf/program-tmux.nix

10 lines
138 B
Nix

{ config, pkgs, ... }:
{
programs.tmux = {
enable = true;
clock24 = true;
};
environment.systemPackages = [ pkgs.tmux ];
}