Skip to content

Instantly share code, notes, and snippets.

@InfiniteCoder01
Last active January 12, 2026 18:48
Show Gist options
  • Select an option

  • Save InfiniteCoder01/e3b8f14405114a7cff1618d807612545 to your computer and use it in GitHub Desktop.

Select an option

Save InfiniteCoder01/e3b8f14405114a7cff1618d807612545 to your computer and use it in GitHub Desktop.
Template flake
{
inputs = {};
outputs = { nixpkgs, ... }: let
system = "x86_64-linux";
pkgs = import nixpkgs { inherit system; };
in {
devShells.${system}.default = pkgs.mkShell {
buildInputs = with pkgs; [
hello
];
};
};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment