aboutsummaryrefslogtreecommitdiff
path: root/home-manager/tests/modules/programs/abook/no-settings.nix
blob: ad04acd23650ec56cc3e6f5f3e21b1410101dbf0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{ config, lib, pkgs, ... }:

with lib;

{
  config = {
    programs.abook.enable = true;

    nixpkgs.overlays =
      [ (self: super: { abook = pkgs.writeScriptBin "dummy-abook" ""; }) ];

    nmt.script = ''
      assertPathNotExists home-files/.config/abook/abookrc
    '';
  };
}