nix
This module provides a function to setup Nix with DeterminateSystems Nix Installer ❄️
Installation
dagger install github.com/tsirysndr/daggerverse/nix@631932b459d218e641dec8047085f0cc87cf5f1c
Entrypoint
Return Type
Nix
Example
dagger -m github.com/tsirysndr/daggerverse/nix@631932b459d218e641dec8047085f0cc87cf5f1c call \
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
Name | Type | Default Value | Description |
---|---|---|---|
src | Directory | - | No description provided |
Example
dagger -m github.com/tsirysndr/daggerverse/nix@631932b459d218e641dec8047085f0cc87cf5f1c call \
setup-nix
func (m *myModule) example() *Container {
return dag.
Nix().
SetupNix()
}
@function
def example() -> dagger.Container:
return (
dag.nix()
.setup_nix()
)
@func()
example(): Container {
return dag
.nix()
.setupNix()
}