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/abook/no-settings.nix

16 lines
213 B
Nix
Raw Normal View History

2020-02-29 23:13:12 +01:00
{ config, lib, pkgs, ... }:
with lib;
{
config = {
programs.abook.enable = true;
test.stubs.abook = { };
2020-02-29 23:13:12 +01:00
nmt.script = ''
assertPathNotExists home-files/.config/abook/abookrc
'';
};
}