util-linux might be better
This commit is contained in:
parent
b62c29ec45
commit
f4193b5ef6
|
@ -15,7 +15,7 @@
|
|||
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@" = {
|
||||
path = with pkgs; [jq coreutils udisks bash flock auto-mount];
|
||||
path = with pkgs; [jq coreutils udisks bash util-linux auto-mount];
|
||||
enable = true;
|
||||
description = "Mount External Drive on %i";
|
||||
script = "auto-mount add %i";
|
||||
|
|
|
@ -55,7 +55,6 @@
|
|||
alejandra
|
||||
btrfs-progs
|
||||
efitools
|
||||
flock
|
||||
git
|
||||
git-filter-repo
|
||||
home-manager
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
jq,
|
||||
coreutils,
|
||||
udisks,
|
||||
flock,
|
||||
util-linux,
|
||||
writeShellApplication,
|
||||
}:
|
||||
writeShellApplication
|
||||
|
@ -13,7 +13,7 @@ writeShellApplication
|
|||
|
||||
name = "auto-mount";
|
||||
|
||||
runtimeInputs = [jq coreutils udisks flock];
|
||||
runtimeInputs = [jq coreutils udisks util-linux];
|
||||
|
||||
text = ''
|
||||
set -euo pipefail
|
||||
|
|
Loading…
Reference in a new issue