dot_testing/home/htop/default.nix

12 lines
154 B
Nix
Raw Normal View History

2023-12-21 15:26:09 -06:00
{ lib, config, pkgs, home, ... }:
{
programs.htop.enable = true;
home.file = {
".config/htop/htoprc" = {
source = ./htoprc;
};
};
}