41 lines
1.5 KiB
Nix
41 lines
1.5 KiB
Nix
{ lib, pkgs, config, ... }:
|
|
|
|
{
|
|
services.hydra.declarativeProjects = {
|
|
emacs-overlay = {
|
|
displayName = "Emacs Overlay";
|
|
inputValue = "https://github.com/nix-community/emacs-overlay";
|
|
specFile = "hydra/spec.json";
|
|
description = "Bleeding edge emacs overlay";
|
|
homepage = "https://github.com/nix-community/emacs-overlay";
|
|
};
|
|
nix-data = {
|
|
displayName = "nix-data";
|
|
inputValue = "https://github.com/nix-community/nix-data";
|
|
specFile = "spec.json";
|
|
description = "Standard set of packages and overlays for data-scientists";
|
|
homepage = "https://github.com/nix-community/nix-data";
|
|
};
|
|
simple-nixos-mailserver = {
|
|
displayName = "Simple NixOS MailServer";
|
|
inputValue = "https://gitlab.com/simple-nixos-mailserver/nixos-mailserver";
|
|
specFile = ".hydra/spec.json";
|
|
description = "A complete and Simple Nixos Mailserver";
|
|
homepage = "https://gitlab.com/simple-nixos-mailserver/nixos-mailserver";
|
|
};
|
|
redoxpkgs = {
|
|
displayName = "Redoxpkgs";
|
|
inputValue = "https://github.com/nix-community/redoxpkgs";
|
|
specFile = ".hydra/spec.json";
|
|
description = "Packages for Redox";
|
|
homepage = "https://github.com/nix-community/redoxpkgs";
|
|
};
|
|
rust-for-linux = {
|
|
displayName = "Rust For Linux";
|
|
inputValue = "https://github.com/rust-for-linux/nix";
|
|
specFile = ".hydra/spec.json";
|
|
description = "Linux Kernel with Rust support";
|
|
homepage = "https://github.com/Rust-for-Linux/linux";
|
|
};
|
|
};
|
|
}
|