e4553546cc
Don't generate the `htoprc` when using default settings to use the defaults of the htop program. Rename the test for this case to 'empty-settings'.
14 lines
174 B
Nix
14 lines
174 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
with lib;
|
|
|
|
{
|
|
config = {
|
|
programs.htop.enable = true;
|
|
|
|
nmt.script = ''
|
|
assertPathNotExists home-files/.config/htop
|
|
'';
|
|
};
|
|
}
|