From d7844c641cb3dec1e3b4db2cb59d458745f8bc93 Mon Sep 17 00:00:00 2001 From: Jean-Pierre PRUNARET Date: Sun, 8 May 2016 18:20:15 +0200 Subject: [PATCH] =?UTF-8?q?ajout=20du=20service=20locate=20(non=20activ?= =?UTF-8?q?=C3=A9=20dans=20base)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- locate.nix | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 locate.nix diff --git a/locate.nix b/locate.nix new file mode 100644 index 0000000..bd5c602 --- /dev/null +++ b/locate.nix @@ -0,0 +1,11 @@ +{ config, pkgs, ... }: + +{ + imports = [ + ]; + + services.locate= { + enable = true; + interval = "hourly"; + }; +}