about summary refs log tree commit diff stats
path: root/pkgs/by-name/au/aumo/package.nix
diff options
context:
space:
mode:
authorBenedikt Peetz <benedikt.peetz@b-peetz.de>2026-04-14 17:13:07 +0200
committerBenedikt Peetz <benedikt.peetz@b-peetz.de>2026-04-14 17:13:07 +0200
commitf5eec494b49bb33822191a1efddba1f0ea2651f9 (patch)
treea1fb4d67f34d9c61c6e9a7d10632529256bc556c /pkgs/by-name/au/aumo/package.nix
parentmodules/legacy/pkgs: Remove some packages that are already in the system closure (diff)
downloadnixos-config-f5eec494b49bb33822191a1efddba1f0ea2651f9.zip
pkgs/aumo: Make resistent to labels containing spaces
Diffstat (limited to 'pkgs/by-name/au/aumo/package.nix')
-rw-r--r--pkgs/by-name/au/aumo/package.nix6
1 files changed, 4 insertions, 2 deletions
diff --git a/pkgs/by-name/au/aumo/package.nix b/pkgs/by-name/au/aumo/package.nix
index 8132a15a..c3c2f3ca 100644
--- a/pkgs/by-name/au/aumo/package.nix
+++ b/pkgs/by-name/au/aumo/package.nix
@@ -10,12 +10,13 @@
 {
   writeShellApplication,
   # Dependencies
+  fd,
   udisks,
-  findutils,
   rofi,
   jq,
   gnugrep,
   util-linux,
+  gnused,
 }:
 writeShellApplication {
   name = "aumo";
@@ -23,10 +24,11 @@ writeShellApplication {
   inheritPath = false;
   runtimeInputs = [
     udisks
-    findutils
+    fd
     rofi
     jq
     gnugrep
     util-linux # for findmnt
+    gnused
   ];
 }