mirror of
https://github.com/nix-community/home-manager
synced 2024-11-01 00:39:45 +01:00
16 lines
284 B
Nix
16 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
|
|
'';
|
|
};
|
|
}
|