dotfiles/nix/personal/tui.nix
2025-04-13 03:37:23 +04:00

22 lines
245 B
Nix

{ config
, pkgs
, inputs
, lib
, ...
}@args:
let
cfg = config.kp2pml30;
in {
config = {
programs = {
tmux.enable = true;
yazi.enable = true;
htop.enable = true;
};
environment.systemPackages = with pkgs; [
ncdu
];
};
}