From 49d098065990665f2cb2dd0ee0630d768c08768d Mon Sep 17 00:00:00 2001 From: Chris Cochrun Date: Sun, 4 Sep 2022 16:11:08 -0500 Subject: [PATCH] getting dalinar up to date with plocate --- README.org | 5 +++++ system/dalinar/configuration.nix | 5 +++++ 2 files changed, 10 insertions(+) diff --git a/README.org b/README.org index 540b9b8..f6fa3ec 100644 --- a/README.org +++ b/README.org @@ -1078,6 +1078,11 @@ Dalinar's config is of course server oriented. # List services that you want to enable: + services.locate = { + enable = true; + locate = pkgs.plocate; + }; + # Enable the OpenSSH daemon. services.openssh.enable = true; services.fstrim.enable = true; diff --git a/system/dalinar/configuration.nix b/system/dalinar/configuration.nix index cf87e6f..945e968 100644 --- a/system/dalinar/configuration.nix +++ b/system/dalinar/configuration.nix @@ -109,6 +109,11 @@ # List services that you want to enable: + services.locate = { + enable = true; + locate = pkgs.plocate; + }; + # Enable the OpenSSH daemon. services.openssh.enable = true; services.fstrim.enable = true;