.github
datadog
doc
examples
hello.nix
foreman
hydra
nixos-modules
src
t
.editorconfig
.gitignore
.perlcriticrc
COPYING
INSTALL
Procfile
README.md
default.nix
flake.lock
flake.nix
hydra-api.yaml
meson.build
nixos-tests.nix
package.nix
shell.nix
version.txt
* Update version in example * Update docs to fix invalid indentifier when using 'hello' * fix build issue for hello example --------- Co-authored-by: Aaron Honeycutt <aaronhoneycutt@proton.me>
14 lines
347 B
Nix
14 lines
347 B
Nix
#
|
|
# jobset example file. This file can be referenced as Nix expression
|
|
# in a jobset configuration along with inputs for nixpkgs and the
|
|
# repository containing this file.
|
|
#
|
|
{ ... }:
|
|
let
|
|
# <nixpkgs> is set to the value designated by the nixpkgs input of the
|
|
# jobset configuration.
|
|
pkgs = (import <nixpkgs> {});
|
|
in {
|
|
hello = pkgs.hello;
|
|
}
|