Files
Nomarchy/features/apps/tmux/default.nix
Bernardo Magri e6b7269b3c
All checks were successful
Check / eval-and-lint (push) Successful in 6m39s
feat: move core apps to downstream and make app modules opt-in
2026-05-31 15:44:50 +01:00

9 lines
205 B
Nix

{ config, pkgs, lib, ... }:
{
config = lib.mkIf config.nomarchy.apps.tmux.enable {
programs.tmux.enable = lib.mkDefault true;
xdg.configFile."tmux/tmux.conf".source = ./config/tmux.conf;
};
}