dot_testing/home/htop/default.nix

12 lines
154 B
Nix

{ lib, config, pkgs, home, ... }:
{
programs.htop.enable = true;
home.file = {
".config/htop/htoprc" = {
source = ./htoprc;
};
};
}