11 lines
234 B
Nix
11 lines
234 B
Nix
|
pkgs: with pkgs.lib;
|
||
|
|
||
|
rec {
|
||
|
|
||
|
# Escape a path according to the systemd rules, e.g. /dev/xyzzy
|
||
|
# becomes dev-xyzzy. FIXME: slow.
|
||
|
escapeSystemdPath = s:
|
||
|
replaceChars ["/" "-"] ["-" "\\x2d"] (substring 1 (stringLength s) s);
|
||
|
|
||
|
}
|