mirror of
https://github.com/kp2pml30/dotfiles.git
synced 2026-02-16 23:34:42 +04:00
17 lines
185 B
Nix
17 lines
185 B
Nix
{ config
|
|
, pkgs
|
|
, inputs
|
|
, lib
|
|
, ...
|
|
}@args:
|
|
let
|
|
cfg = config.kp2pml30;
|
|
in {
|
|
config = {
|
|
programs = {
|
|
tmux.enable = true;
|
|
yazi.enable = true;
|
|
htop.enable = true;
|
|
};
|
|
};
|
|
}
|