config: add platforms to system lists

This commit is contained in:
Gabriel Arazas 2023-07-30 14:16:40 +08:00
parent f282aa2066
commit 1978c18760
No known key found for this signature in database
GPG Key ID: ADE0C41DAB221FCC

View File

@ -105,10 +105,14 @@
inputs.nur.overlay
];
defaultSystem = inputs.flake-utils.lib.system.x86_64-linux;
defaultSystem = "x86_64-linux";
# Just add systems here and it should add systems to the outputs.
systems = with inputs.flake-utils.lib.system; [ defaultSystem ];
systems = with inputs.flake-utils.lib.system; [
"x86_64-linux"
"aarch64-linux"
"riscv64-linux"
];
forAllSystems = f: nixpkgs.lib.genAttrs systems (system: f system);
extraArgs = {