mirror of
https://github.com/foo-dogsquared/nixos-config.git
synced 2025-02-07 06:19:00 +00:00
config: add platforms to system lists
This commit is contained in:
parent
f282aa2066
commit
1978c18760
@ -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 = {
|
||||
|
Loading…
Reference in New Issue
Block a user