Dagger
Search

nix

No long description provided.

Installation

dagger install github.com/tsirysndr/daggerverse/nix@0dd781fc462998725cb8f8eef88158a98945e7a8

Entrypoint

Return Type
Nix
Example
func (m *myModule) example() *Nix  {
	return dag.
			Nix()
}
@function
def example() -> dag.Nix:
	return (
		dag.nix()
	)
@func()
example(): Nix {
	return dag
		.nix()
}

Types

Nix 🔗

setupNix() 🔗

Setup Nix with DeterminateSystems Nix Installer

Return Type
Container !
Arguments
NameTypeDefault ValueDescription
srcDirectory -No description provided
Example
Function Nix.setupNix is not accessible from the nix module
func (m *myModule) example()   {
	return dag.
			Nix().
			SetupNix()
}
@function
def example() -> :
	return (
		dag.nix()
		.setup_nix()
	)
@func()
example():  {
	return dag
		.nix()
		.setupNix()
}