mirror of
https://github.com/morten-olsen/nixos-config.git
synced 2026-02-08 00:36:27 +01:00
9 lines
124 B
Nix
9 lines
124 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
programs.tmux = {
|
|
enable = true;
|
|
extraConfig = builtins.readFile ./files/config;
|
|
};
|
|
}
|