2024-05-04 23:15:57 +03:00
|
|
|
# Collection of common functions.
|
2024-11-15 01:42:21 +03:00
|
|
|
{
|
|
|
|
lib
|
|
|
|
}: rec {
|
2024-11-04 04:37:29 +03:00
|
|
|
# Remove tabs indentation,
|
|
|
|
trimTabs = text: let
|
|
|
|
shouldStripTab = lines: builtins.all (line: (line == "") || (lib.strings.hasPrefix " " line)) lines;
|
|
|
|
stripTab = lines: builtins.map (line: lib.strings.removePrefix " " line) lines;
|
|
|
|
stripTabs = lines: if (shouldStripTab lines) then (stripTabs (stripTab lines)) else lines;
|
|
|
|
in builtins.concatStringsSep "\n" (stripTabs (lib.strings.splitString "\n" text));
|
2024-04-06 03:03:58 +03:00
|
|
|
|
2024-11-04 04:37:29 +03:00
|
|
|
# List all files in a dir.
|
|
|
|
ls = path: map (f: "${path}/${f}") (builtins.attrNames (builtins.readDir path));
|
2024-04-28 21:24:49 +03:00
|
|
|
|
2024-11-04 04:37:29 +03:00
|
|
|
# Concat all files by `text` key.
|
|
|
|
catText = files: args: builtins.foldl' (acc: mod: acc + (trimTabs (import mod args).text)) "" files;
|
2024-05-10 20:34:15 +03:00
|
|
|
|
2024-11-04 04:37:29 +03:00
|
|
|
# Concat all file paths by `file` key.
|
|
|
|
catFile = files: args: builtins.foldl' (acc: mod: acc + (trimTabs (builtins.readFile (import mod args).file))) "" files;
|
2024-06-25 04:04:39 +03:00
|
|
|
|
2024-11-04 04:37:29 +03:00
|
|
|
# Concat all files as a set.
|
|
|
|
catSet = files: args: builtins.foldl' (acc: mod: acc // mod) { } (map (file: import file args) files);
|
2024-06-25 04:04:39 +03:00
|
|
|
|
2024-11-04 04:37:29 +03:00
|
|
|
# Systemd service that does not restart with system switch.
|
|
|
|
mkStaticSystemdService = params: params // {
|
|
|
|
restartIfChanged = false;
|
|
|
|
stopIfChanged = false;
|
|
|
|
unitConfig.X-StopOnRemoval = false;
|
|
|
|
};
|
2024-04-06 03:03:58 +03:00
|
|
|
}
|