dotfiles/nix/personal/tui.nix
2026-04-12 22:38:09 +09:00

27 lines
359 B
Nix

{ config
, pkgs
, inputs
, lib
, ...
}@args:
let
cfg = config.kp2pml30;
in {
config = {
nixpkgs.overlays = [ inputs.claude-code.overlays.default ];
programs = {
tmux.enable = true;
yazi.enable = true;
htop.enable = true;
};
environment.systemPackages = with pkgs; [
ncdu
timewarrior
p7zip
claude-code
lazydocker
];
};
}