2021-07-02 22:36:30 +00:00
|
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
|
|
|
|
with lib;
|
|
|
|
|
|
|
|
{
|
|
|
|
config = {
|
|
|
|
programs.htop.enable = true;
|
|
|
|
|
2021-11-04 16:42:44 +00:00
|
|
|
test.stubs.htop = { };
|
|
|
|
|
2021-07-02 22:36:30 +00:00
|
|
|
nmt.script = ''
|
2021-11-04 16:42:44 +00:00
|
|
|
assertPathNotExists home-files/.config/htop
|
2021-07-02 22:36:30 +00:00
|
|
|
'';
|
|
|
|
};
|
|
|
|
}
|