Skip to content

Instantly share code, notes, and snippets.

@PerchunPak
Created November 16, 2024 21:57
Show Gist options
  • Save PerchunPak/46b924caa7a59628a9d98808970d1953 to your computer and use it in GitHub Desktop.
Save PerchunPak/46b924caa7a59628a9d98808970d1953 to your computer and use it in GitHub Desktop.
Minimal flake.nix
{
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