Skip to content

Commit

Permalink
Merge pull request #62 from Misterio77/overridable-systems
Browse files Browse the repository at this point in the history
nix: support for aarch64 + overridable systems
  • Loading branch information
InioX authored Apr 21, 2024
2 parents 5662775 + 960e803 commit 3040fe9
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 4 deletions.
18 changes: 17 additions & 1 deletion flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@
description = " A material you color generation tool for linux ";
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
systems.url = "github:nix-systems/default-linux";
};
outputs = { self, nixpkgs }:
outputs = { self, nixpkgs, systems }:
let
supportedSystems = [ "x86_64-linux" ];
forAllSystems = nixpkgs.lib.genAttrs supportedSystems;
forAllSystems = nixpkgs.lib.genAttrs (import systems);
pkgsFor = nixpkgs.legacyPackages;
in {
packages = forAllSystems (system: {
Expand Down

0 comments on commit 3040fe9

Please sign in to comment.