2012-10-12 23:01:49 +02:00
|
|
|
pkgs: with pkgs.lib;
|
|
|
|
|
|
|
|
rec {
|
|
|
|
|
2016-08-23 20:01:35 +02:00
|
|
|
# Check whenever fileSystem is needed for boot
|
|
|
|
fsNeededForBoot = fs: fs.neededForBoot
|
|
|
|
|| elem fs.mountPoint [ "/" "/nix" "/nix/store" "/var" "/var/log" "/var/lib" "/etc" ];
|
|
|
|
|
2015-11-25 20:09:09 +01:00
|
|
|
# Check whenever `b` depends on `a` as a fileSystem
|
2018-12-24 14:05:55 +01:00
|
|
|
fsBefore = a: b: a.mountPoint == b.device
|
|
|
|
|| hasPrefix "${a.mountPoint}${optionalString (!(hasSuffix "/" a.mountPoint)) "/"}" b.mountPoint;
|
2015-11-25 20:09:09 +01:00
|
|
|
|
2012-10-12 23:01:49 +02:00
|
|
|
# Escape a path according to the systemd rules, e.g. /dev/xyzzy
|
|
|
|
# becomes dev-xyzzy. FIXME: slow.
|
|
|
|
escapeSystemdPath = s:
|
2014-09-04 03:40:05 +02:00
|
|
|
replaceChars ["/" "-" " "] ["-" "\\x2d" "\\x20"]
|
|
|
|
(if hasPrefix "/" s then substring 1 (stringLength s) s else s);
|
2012-10-12 23:01:49 +02:00
|
|
|
|
2016-06-12 21:03:14 +02:00
|
|
|
# Returns a system path for a given shell package
|
|
|
|
toShellPath = shell:
|
|
|
|
if types.shellPackage.check shell then
|
|
|
|
"/run/current-system/sw${shell.shellPath}"
|
2016-07-04 16:10:51 +02:00
|
|
|
else if types.package.check shell then
|
|
|
|
throw "${shell} is not a shell package"
|
2016-06-12 21:03:14 +02:00
|
|
|
else
|
|
|
|
shell;
|
2012-10-12 23:01:49 +02:00
|
|
|
}
|