dotfiles/nix/personal/tui.nix
2026-02-11 21:44:06 +09:00

24 lines
268 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
timewarrior
p7zip
];
};
}