mirror of
https://github.com/foo-dogsquared/nixos-config.git
synced 2025-04-25 18:19:10 +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 = {
|
options = {
|
||||||
systems = lib.mkOption {
|
systems = lib.mkOption {
|
||||||
type = with lib.types; listOf str;
|
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" ];
|
example = [ "x86_64-linux" "aarch64-linux" ];
|
||||||
description = ''
|
description = ''
|
||||||
A list of platforms that the NixOS configuration is supposed to be
|
A list of platforms that the NixOS configuration is supposed to be
|
||||||
|
@ -103,8 +103,8 @@ let
|
|||||||
options = {
|
options = {
|
||||||
systems = lib.mkOption {
|
systems = lib.mkOption {
|
||||||
type = with lib.types; listOf str;
|
type = with lib.types; listOf str;
|
||||||
default = lib.lists.take 1 config.systems;
|
default = config.systems;
|
||||||
defaultText = "The first system listed from `config.systems`.";
|
defaultText = "config.systems";
|
||||||
example = [ "x86_64-linux" "aarch64-linux" ];
|
example = [ "x86_64-linux" "aarch64-linux" ];
|
||||||
description = ''
|
description = ''
|
||||||
A list of platforms that the NixOS configuration is supposed to be
|
A list of platforms that the NixOS configuration is supposed to be
|
||||||
|
Loading…
Reference in New Issue
Block a user