Skip to content

Commit

Permalink
add riscv64 support
Browse files Browse the repository at this point in the history
  • Loading branch information
Mic92 committed Jul 25, 2024
1 parent 31b6d2e commit aecb4b3
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,15 @@
};
defaultTemplate = self.templates.app;

} //
(flake-utils.lib.eachDefaultSystem
(system:
}
// (flake-utils.lib.eachSystem
[
"x86_64-linux"
"aarch64-linux"
"riscv64-linux"
]
(
system:
let
pkgs = nixpkgs.legacyPackages.${system};

Expand Down

0 comments on commit aecb4b3

Please sign in to comment.