1
0
mirror of https://github.com/nix-community/home-manager synced 2024-06-28 17:38:33 +02:00
home-manager/tests/modules/programs/abook/no-settings.nix
2020-03-06 00:27:21 +01:00

17 lines
284 B
Nix

{ 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
'';
};
}