From 2a95e688c090c5adf4fcf23209fca335e429c1a5 Mon Sep 17 00:00:00 2001 From: Lillian-Violet Date: Fri, 28 Jun 2024 23:29:19 +0200 Subject: [PATCH] Need jq as well --- nixos/hosts/shodan/auto-mount.nix | 2 +- pkgs/auto-mount/default.nix | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/nixos/hosts/shodan/auto-mount.nix b/nixos/hosts/shodan/auto-mount.nix index 1465c4e..1c4a376 100644 --- a/nixos/hosts/shodan/auto-mount.nix +++ b/nixos/hosts/shodan/auto-mount.nix @@ -16,7 +16,7 @@ ''; systemd.services."external-drive-mount@" = { - path = with pkgs; [util-linux udisks bash auto-mount steam]; + path = with pkgs; [util-linux udisks bash auto-mount steam jq]; enable = true; serviceConfig = { ExecStart = "${pkgs.auto-mount}/bin/auto-mount add %i"; diff --git a/pkgs/auto-mount/default.nix b/pkgs/auto-mount/default.nix index ac7a6a2..3a27c32 100644 --- a/pkgs/auto-mount/default.nix +++ b/pkgs/auto-mount/default.nix @@ -4,6 +4,7 @@ system, pkgs, util-linux, + jq, writeShellApplication, }: writeShellApplication