Skip to content

Instantly share code, notes, and snippets.

@abdivasiyev
Created February 3, 2024 18:37
Show Gist options
  • Save abdivasiyev/6ab4801a89857bcfafee952cf2062ca3 to your computer and use it in GitHub Desktop.
Save abdivasiyev/6ab4801a89857bcfafee952cf2062ca3 to your computer and use it in GitHub Desktop.
default nix configuration
with import <nixpkgs> {}; rec {
helloNixEnv = stdenv.mkDerivation {
name = "hello-nix-env";
buildInputs = [ go ];
};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment