From 9cd823818c9eacbd13e74d59c7c8dd8296cab321 Mon Sep 17 00:00:00 2001 From: Lillian-Violet Date: Thu, 21 Mar 2024 00:28:26 +0100 Subject: [PATCH] Let's try this --- nixos/hosts/shodan/auto-mount.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/nixos/hosts/shodan/auto-mount.nix b/nixos/hosts/shodan/auto-mount.nix index d165e06..06cf81e 100644 --- a/nixos/hosts/shodan/auto-mount.nix +++ b/nixos/hosts/shodan/auto-mount.nix @@ -22,8 +22,8 @@ path = with pkgs; [jq coreutils udisks bash util-linux auto-mount]; enable = true; description = "Mount External Drive on %i"; - script = "auto-mount add "; - scriptArgs = "%i"; + script = "auto-mount add"; + scriptArgs = " %i"; serviceConfig = { Type = "oneshot"; RemainAfterExit = true; @@ -34,8 +34,8 @@ path = with pkgs; [jq coreutils udisks bash util-linux auto-mount]; enable = true; description = "Mount External Drive on %i"; - script = "auto-mount remove "; - scriptArgs = "%i"; + script = "auto-mount remove"; + scriptArgs = " %i"; serviceConfig = { Type = "oneshot"; RemainAfterExit = false;