Files
home-manager/modules/lib/booleans.nix
2026-04-13 22:02:40 -05:00

6 lines
146 B
Nix

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