Compare commits
No commits in common. "cc757f0adb08371f867d8b086eb7e42f4867f46a" and "1363c326f7b8164f4f022dd27bbb02f12983ceb5" have entirely different histories.
cc757f0adb
...
1363c326f7
12
by-maintainer.nix
Normal file
12
by-maintainer.nix
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
{ ... }@args:
|
||||||
|
|
||||||
|
let
|
||||||
|
pkgs = (import <nixpkgs> {});
|
||||||
|
in
|
||||||
|
|
||||||
|
# convert package list to attrset
|
||||||
|
with builtins; listToAttrs (
|
||||||
|
map ( x: { name = x.pname; value = x;} ) (
|
||||||
|
import "${pkgs.path}/maintainers/scripts/build.nix" args
|
||||||
|
)
|
||||||
|
)
|
||||||
28
default.nix
Normal file
28
default.nix
Normal file
@ -0,0 +1,28 @@
|
|||||||
|
{ ... }@args:
|
||||||
|
|
||||||
|
let
|
||||||
|
pkgs = (import <nixpkgs> {});
|
||||||
|
in
|
||||||
|
with pkgs; {
|
||||||
|
illustris = import ./by-maintainer.nix args;
|
||||||
|
homelab = {
|
||||||
|
inherit (nixosTests) hedgedoc jitsi-meet searx;
|
||||||
|
#inherit (nixosTests) jibri zfs;
|
||||||
|
};
|
||||||
|
misc = {
|
||||||
|
hadoop = {
|
||||||
|
inherit (nixosTests) hadoop;
|
||||||
|
# https://github.com/NixOS/nixpkgs/pull/154004
|
||||||
|
#inherit (nixosTests) hadoop_3_2 hadoop2;
|
||||||
|
};
|
||||||
|
sssd = { inherit (nixosTests) sssd sssd-ldap; };
|
||||||
|
prometheus = {
|
||||||
|
inherit (nixosTests) prometheus;
|
||||||
|
#inherit (nixosTests) prometheus-exporters;
|
||||||
|
};
|
||||||
|
inherit (nixosTests) kafka keepalived keycloak nginx php postgresql signal-desktop spark vault;
|
||||||
|
};
|
||||||
|
#disabled = {
|
||||||
|
# mysql = { inherit (nixosTests) mysql mysql-autobackup mysql-backup mysql-replication; };
|
||||||
|
#};
|
||||||
|
}
|
||||||
Loading…
x
Reference in New Issue
Block a user