add more default packages

This commit is contained in:
kp2pml30 2025-03-28 18:17:05 +04:00
parent 1d0f0288a8
commit 5057d037cb
Signed by: kp2pml30
GPG key ID: CD6528BAC23E3E34
6 changed files with 29 additions and 2 deletions

17
nix/personal/tui.nix Normal file
View file

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