1
0
mirror of https://github.com/nix-community/home-manager synced 2024-06-02 21:13:33 +02:00
home-manager/tests/modules/programs/htop/empty-settings.nix
2021-08-16 23:31:59 +02:00

17 lines
267 B
Nix

{ config, lib, pkgs, ... }:
with lib;
{
config = {
programs.htop.enable = true;
nixpkgs.overlays =
[ (self: super: { htop = pkgs.writeScriptBin "dummy" ""; }) ];
nmt.script = ''
assertPathNotExists home-files/.config/htop
'';
};
}