zsh.nix/.hydra/jobsets.nix

14 lines
347 B
Nix
Raw Normal View History

2025-01-10 06:34:26 +01:00
#
# 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;
}