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