Skip to content

Instantly share code, notes, and snippets.

@Vaisakhkm2625
Last active November 5, 2024 14:26
Show Gist options
  • Save Vaisakhkm2625/ebc6480cd1705253e71d8389a2c83114 to your computer and use it in GitHub Desktop.
Save Vaisakhkm2625/ebc6480cd1705253e71d8389a2c83114 to your computer and use it in GitHub Desktop.
non free allow nix
let
supportedSystems = [ "x86_64-linux" "aarch64-linux" "x86_64-darwin" "aarch64-darwin" ];
forEachSupportedSystem = f: nixpkgs.lib.genAttrs supportedSystems (system: f {
pkgs = import nixpkgs { inherit system; config.allowUnfree = true; };
});
in
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment