mirror of
https://github.com/nix-community/home-manager.git
synced 2026-01-12 01:50:44 +08:00
treewide: format with latest stable formatter
Signed-off-by: Austin Horstman <khaneliman12@gmail.com>
This commit is contained in:
@@ -18,17 +18,16 @@ rec {
|
||||
# All characters that are considered safe. Note "-" is not
|
||||
# included to avoid "-" followed by digit being interpreted as a
|
||||
# version.
|
||||
safeChars =
|
||||
[
|
||||
"+"
|
||||
"."
|
||||
"_"
|
||||
"?"
|
||||
"="
|
||||
]
|
||||
++ lowerChars
|
||||
++ upperChars
|
||||
++ stringToCharacters "0123456789";
|
||||
safeChars = [
|
||||
"+"
|
||||
"."
|
||||
"_"
|
||||
"?"
|
||||
"="
|
||||
]
|
||||
++ lowerChars
|
||||
++ upperChars
|
||||
++ stringToCharacters "0123456789";
|
||||
|
||||
empties = l: genList (x: "") (length l);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user