add flock as a requirement

This commit is contained in:
Lillian Violet 2024-03-20 23:42:25 +01:00
parent 0b88a87abe
commit b62c29ec45
3 changed files with 4 additions and 2 deletions

View file

@ -15,7 +15,7 @@
KERNEL=="nvme0n1p9|nvme0n1p1[0-9]", ACTION=="remove", RUN+="${pkgs.systemd}/bin/systemctl stop --no-block external-drive-mount@%k.service" KERNEL=="nvme0n1p9|nvme0n1p1[0-9]", ACTION=="remove", RUN+="${pkgs.systemd}/bin/systemctl stop --no-block external-drive-mount@%k.service"
''; '';
systemd.services."external-drive-mount@" = { systemd.services."external-drive-mount@" = {
path = with pkgs; [jq coreutils udisks bash auto-mount]; path = with pkgs; [jq coreutils udisks bash flock auto-mount];
enable = true; enable = true;
description = "Mount External Drive on %i"; description = "Mount External Drive on %i";
script = "auto-mount add %i"; script = "auto-mount add %i";

View file

@ -55,6 +55,7 @@
alejandra alejandra
btrfs-progs btrfs-progs
efitools efitools
flock
git git
git-filter-repo git-filter-repo
home-manager home-manager

View file

@ -4,6 +4,7 @@
jq, jq,
coreutils, coreutils,
udisks, udisks,
flock,
writeShellApplication, writeShellApplication,
}: }:
writeShellApplication writeShellApplication
@ -12,7 +13,7 @@ writeShellApplication
name = "auto-mount"; name = "auto-mount";
runtimeInputs = [jq coreutils udisks]; runtimeInputs = [jq coreutils udisks flock];
text = '' text = ''
set -euo pipefail set -euo pipefail