Skip to content

Commit

Permalink
Add slider to source.includeGroups for raviole
Browse files Browse the repository at this point in the history
  • Loading branch information
jaen authored and yu-re-ka committed Nov 13, 2022
1 parent 0157ac0 commit fef5f8f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion modules/pixel/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,8 @@ mkMerge [
# Exclude all devices by default
source.excludeGroups = mkDefault (lib.attrNames deviceMap ++ lib.mapAttrsToList (name: device: device.family) deviceMap ++ [ "slider" ]);
# But include names related to our device
source.includeGroups = mkDefault [ config.device config.deviceFamily ];
source.includeGroups = mkDefault ([ config.device config.deviceFamily ]
++ lib.optional (config.deviceFamily == "raviole") "slider");

signing.avb.enable = mkDefault true;
})
Expand Down

0 comments on commit fef5f8f

Please sign in to comment.