1
0
Fork 0
mirror of https://github.com/hercules-ci/flake-parts.git synced 2025-03-31 04:04:55 +00:00

perSystem: add a default value for systems

This commit is contained in:
Sridhar Ratnakumar 2022-05-28 11:04:48 -04:00 committed by Sridhar Ratnakumar
parent 88ee50725f
commit e9d3fef025
2 changed files with 4 additions and 0 deletions

View file

@ -1,3 +1,6 @@
# Now
- `perSystem`: Set `systems` argument by default to `nixpkgs.lib.systems.flakeExposed`
# 2022-05-25

View file

@ -18,6 +18,7 @@ in
systems = mkOption {
description = "All the system types to enumerate in the flake.";
type = types.listOf types.str;
default = lib.systems.flakeExposed;
};
perInput = mkOption {