1
0
mirror of https://github.com/nix-community/home-manager synced 2024-07-06 05:13:28 +02:00
home-manager/tests/modules/programs/abook/no-settings.nix
2020-03-04 19:58:05 +01:00

14 lines
184 B
Nix

{ config, lib, pkgs, ... }:
with lib;
{
config = {
programs.abook.enable = true;
nmt.script = ''
assertPathNotExists home-files/.config/abook/abookrc
'';
};
}