Created
November 16, 2024 21:57
-
-
Save PerchunPak/46b924caa7a59628a9d98808970d1953 to your computer and use it in GitHub Desktop.
Minimal flake.nix
This file contains hidden or 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
{ | |
inputs = { | |
nixpkgs.url = "github:nixos/nixpkgs/nixpkgs-unstable"; | |
}; | |
outputs = | |
{ nixpkgs, ... }: | |
let | |
lib = nixpkgs.lib; | |
forAllSystems = with lib; mergeAttrsList (forEach lib.platforms.all); | |
in | |
forAllSystems ( | |
system: | |
let | |
pkgs = import nixpkgs { inherit system; }; | |
in | |
{ | |
} | |
); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment