From aca72d566cb49d6b2847e34309684bd3671c7eb6 Mon Sep 17 00:00:00 2001 From: Hektor Misplon Date: Sat, 15 Nov 2025 21:04:21 +0100 Subject: [PATCH] Add 'plocate' to 'astyanax' host --- hosts/astyanax/configuration.nix | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/hosts/astyanax/configuration.nix b/hosts/astyanax/configuration.nix index e2fbb23..ce0b8fb 100644 --- a/hosts/astyanax/configuration.nix +++ b/hosts/astyanax/configuration.nix @@ -1,4 +1,4 @@ -{ ... }: +{ pkgs, ... }: { system.stateVersion = "25.05"; @@ -48,4 +48,9 @@ enable = true; openDefaultPorts = true; }; + + services.locate = { + enable = true; + package = pkgs.plocate; + }; }