Last active
November 5, 2024 14:26
-
-
Save Vaisakhkm2625/ebc6480cd1705253e71d8389a2c83114 to your computer and use it in GitHub Desktop.
non free allow nix
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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