flake-parts/setups: correct documentation

This commit is contained in:
Gabriel Arazas 2024-07-12 13:03:11 +08:00
parent 412c663648
commit 8eb337cefc
No known key found for this signature in database
GPG Key ID: 62104B43D00AA360
2 changed files with 3 additions and 3 deletions

View File

@ -6,7 +6,7 @@
defaultText = "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 environment config is supposed to be
deployed on. deployed on.
''; '';
}; };
@ -15,7 +15,7 @@
type = with lib.types; listOf raw; type = with lib.types; listOf raw;
default = [ ]; default = [ ];
description = '' description = ''
A list of NixOS modules specific for that host. A list of modules specific for that environment.
''; '';
}; };

View File

@ -7,7 +7,7 @@
description = '' description = ''
The name of the NixVim configuration from The name of the NixVim configuration from
{option}`setups.nixvim.configs.<name>` to be included as part {option}`setups.nixvim.configs.<name>` to be included as part
of the NixOS system. of the wider-scoped environment.
''; '';
}; };