zsh.nix/.hydra/jobsets.nix
jiriks74 1bbfa11ff3
Some checks failed
Perform checks / formatting (push) Has been cancelled
Perform checks / nix_flake_check (push) Has been cancelled
feat(ci/cd): Set up Hydra
2025-01-10 07:30:42 +01:00

13 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;
}