home-manager/modules/lib/booleans.nix
2022-04-07 22:36:13 -06:00

5 lines
155 B
Nix

{ lib }: {
# Converts a boolean to a yes/no string. This is used in lots of
# configuration formats.
yesNo = value: if value then "yes" else "no";
}