mirror of
https://github.com/foo-dogsquared/nixos-config.git
synced 2025-01-31 04:58:01 +00:00
flake-parts/setups: change to use all systems by default
This commit is contained in:
parent
5e37db2361
commit
52d2f0186e
@ -74,7 +74,8 @@ let
|
||||
options = {
|
||||
systems = lib.mkOption {
|
||||
type = with lib.types; listOf str;
|
||||
default = lib.lists.take 1 config.systems;
|
||||
default = config.systems;
|
||||
defaultText = "config.systems";
|
||||
example = [ "x86_64-linux" "aarch64-linux" ];
|
||||
description = ''
|
||||
A list of platforms that the NixOS configuration is supposed to be
|
||||
|
@ -103,8 +103,8 @@ let
|
||||
options = {
|
||||
systems = lib.mkOption {
|
||||
type = with lib.types; listOf str;
|
||||
default = lib.lists.take 1 config.systems;
|
||||
defaultText = "The first system listed from `config.systems`.";
|
||||
default = config.systems;
|
||||
defaultText = "config.systems";
|
||||
example = [ "x86_64-linux" "aarch64-linux" ];
|
||||
description = ''
|
||||
A list of platforms that the NixOS configuration is supposed to be
|
||||
|
Loading…
Reference in New Issue
Block a user