dotfiles/nix/personal/tui.nix

17 lines
185 B
Nix

{ config
, pkgs
, inputs
, lib
, ...
}@args:
let
cfg = config.kp2pml30;
in {
config = {
programs = {
tmux.enable = true;
yazi.enable = true;
htop.enable = true;
};
};
}