1
0
mirror of https://github.com/nix-community/home-manager synced 2024-07-03 03:48:31 +02:00
home-manager/tests/modules/programs/htop/empty-settings.nix

16 lines
202 B
Nix
Raw Normal View History

{ config, lib, pkgs, ... }:
with lib;
{
config = {
programs.htop.enable = true;
test.stubs.htop = { };
2021-08-16 23:29:49 +02:00
nmt.script = ''
assertPathNotExists home-files/.config/htop
'';
};
}