fix: Typo

This commit is contained in:
2025-10-29 08:58:11 +01:00
parent 8346812c51
commit 719c38d290

View File

@@ -4,6 +4,14 @@
}:
let
addUser = pkgs.writeShellApplication rec {
name = "adduser";
runtimeInputs = [
pkgs.openfga-cli
pkgs.ripgrep
];
text = builtins.readFile ./scripts/${name}.sh;
};
delUser = pkgs.writeShellApplication rec {
name = "deluser";
runtimeInputs = [
pkgs.openfga-cli
@@ -12,14 +20,6 @@ let
];
text = builtins.readFile ./scripts/${name}.sh;
};
delUser = pkgs.writeShellApplication rec {
name = "adduser";
runtimeInputs = [
pkgs.openfga-cli
pkgs.ripgrep
];
text = builtins.readFile ./scripts/${name}.sh;
};
in
pkgs.mkShellNoCC {
packages = [