initial commit

This commit is contained in:
Henry Hiles 2025-08-31 10:43:23 -04:00
commit f5c962b566
No known key found for this signature in database
8 changed files with 7248 additions and 0 deletions

View file

@ -0,0 +1,9 @@
# Taken from https://github.com/linyinfeng/kukui-nixos/blob/53027913fffd5bf48382bbcec6217d0352dc7278/lib/adjust-standalone-config.nix, thank you!
{lib}: config:
lib.mapAttrs (
_: value:
if (value.tristate or null) == "y"
then lib.mkOverride 90 value
else lib.mkOverride 110 value
)
config