Created
February 3, 2024 18:37
-
-
Save abdivasiyev/6ab4801a89857bcfafee952cf2062ca3 to your computer and use it in GitHub Desktop.
default nix configuration
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
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