mirror of
https://github.com/kp2pml30/dotfiles.git
synced 2026-02-16 23:34:42 +04:00
24 lines
268 B
Nix
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
|
|
];
|
|
|
|
};
|
|
}
|