1
0
mirror of https://github.com/nix-community/home-manager synced 2024-06-30 18:38:31 +02:00
home-manager/tests/modules/programs/abook/no-settings.nix

17 lines
284 B
Nix
Raw Normal View History

2020-02-29 23:13:12 +01:00
{ config, lib, pkgs, ... }:
with lib;
{
config = {
programs.abook.enable = true;
nixpkgs.overlays =
[ (self: super: { abook = pkgs.writeScriptBin "dummy-abook" ""; }) ];
2020-02-29 23:13:12 +01:00
nmt.script = ''
assertPathNotExists home-files/.config/abook/abookrc
'';
};
}