-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ecd8da8
commit f6f5c7d
Showing
6 changed files
with
224 additions
and
105 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,19 @@ | ||
{ | ||
description = "A project to declaratively add people to GitHub and their related SIG teams"; | ||
description = | ||
"A project to declaratively add people to GitHub and their related SIG teams"; | ||
|
||
inputs.nixpkgs.url = "github:auxolotl/nixpkgs/nixos-unstable"; | ||
|
||
outputs = {nixpkgs, ...}: let | ||
systems = ["x86_64-linux" "x86_64-darwin" "aarch64-linux" "aarch64-darwin"]; | ||
forAllSystems = nixpkgs.lib.genAttrs systems; | ||
pkgsFor = nixpkgs.legacyPackages; | ||
in { | ||
devShells = forAllSystems (system: { | ||
default = pkgsFor.${system}.callPackage ./shell.nix {}; | ||
}); | ||
outputs = { nixpkgs, ... }: | ||
let | ||
systems = | ||
[ "x86_64-linux" "x86_64-darwin" "aarch64-linux" "aarch64-darwin" ]; | ||
forAllSystems = nixpkgs.lib.genAttrs systems; | ||
pkgsFor = nixpkgs.legacyPackages; | ||
in { | ||
devShells = forAllSystems | ||
(system: { default = pkgsFor.${system}.callPackage ./shell.nix { }; }); | ||
|
||
formatter = forAllSystems (system: pkgsFor.${system}.nixfmt); | ||
}; | ||
formatter = forAllSystems (system: pkgsFor.${system}.nixfmt); | ||
}; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,32 +1,27 @@ | ||
let | ||
sigs = import ./sigs.nix; | ||
users = import ./users.nix; | ||
in [ | ||
{ | ||
sig = sigs.documentation; | ||
leaders = [ | ||
users.coded | ||
users.minion | ||
]; | ||
members = [ | ||
users.axel | ||
users.isabel | ||
users.ircurry | ||
users."8bitbuddhist" | ||
users.trespaul | ||
users.imadnyc | ||
users.aprl | ||
users.dfh | ||
users.vera | ||
users.nova | ||
users.blue | ||
users.deivpaukst | ||
users.tau | ||
users.srestegosaurio | ||
users.jacab | ||
users.liketechnik | ||
users.angryant | ||
users.raf | ||
]; | ||
} | ||
] | ||
sigs = import ./sigs.nix; | ||
users = import ./users.nix; | ||
in [{ | ||
sig = sigs.documentation; | ||
leaders = [ users.coded users.minion ]; | ||
members = [ | ||
users.axel | ||
users.isabel | ||
users.ircurry | ||
users."8bitbuddhist" | ||
users.trespaul | ||
users.imadnyc | ||
users.aprl | ||
users.dfh | ||
users.vera | ||
users.nova | ||
users.blue | ||
users.deivpaukst | ||
users.tau | ||
users.srestegosaurio | ||
users.jacab | ||
users.liketechnik | ||
users.angryant | ||
users.raf | ||
]; | ||
}] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,4 @@ | ||
{ | ||
mkShell, | ||
python3, | ||
... | ||
}: | ||
{ mkShell, python3, ... }: | ||
mkShell { | ||
packages = [ | ||
(python3.withPackages (pyPkgs: [pyPkgs.pydiscourse])) | ||
]; | ||
packages = [ (python3.withPackages (pyPkgs: [ pyPkgs.pydiscourse ])) ]; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
documentation = { | ||
forum = "admins"; | ||
github = "sig-documentation"; | ||
}; | ||
documentation = { | ||
forum = "admins"; | ||
github = "sig-documentation"; | ||
}; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,50 +1,179 @@ | ||
{ | ||
jakehamilton = { forum = "jakehamilton"; github = "jakehamilton"; }; | ||
jeff = { forum = "jeff"; github = "jeff-hykin"; }; | ||
axel = { forum = "axel"; github = "axelsilverdew"; }; | ||
isabel = { forum = "isabel"; github = "isabelroses"; }; | ||
imadnyc = { forum = "imadnyc"; github = "imadnyc"; }; | ||
liketechnik = { forum = "liketechnik"; github = "liketechnik"; }; | ||
nova = { forum = "nova"; github = "novamacintyre"; }; | ||
dfh = { forum = "dfh"; github = "dantefromhell"; }; | ||
c8h4 = { forum = "c8h4"; github = "cristoph-heiss"; }; | ||
"8bitbuddhist" = { forum = "8bitbuddhist"; github = "8bitbuddhist"; }; | ||
coded = { forum = "coded"; github = "thecodedprof"; }; | ||
vera = { forum = "vera"; github = "zumorica"; }; | ||
blue = { forum = "blue"; github = "bluelinden"; }; | ||
"0xmrtt" = { forum = "0xmrtt"; github = "0xmrtt"; }; | ||
bbjubjub = { forum = "bbjubjub"; github = "bbjubjub2494"; }; | ||
vlinkz = { forum = "vlinkz"; github = "vlinkz"; }; | ||
sigma = { forum = "sigma"; github = "sigmanificient"; }; | ||
minion = { forum = "minion"; github = "minion3665"; }; | ||
daholli = { forum = "daholli"; github = "daholli"; }; | ||
evanrichter = { forum = "evanrichter"; github = "evanrichter"; }; | ||
marshmallow = { forum = "marshmallow"; github = "mrshmllow"; }; | ||
trespaul = { forum = "trespaul"; github = "trespaul"; }; | ||
greyrat = { forum = "greyrat"; github = "greyratdev"; }; | ||
ptitfred = { forum = "ptitfred"; github = "ptitfred"; }; | ||
jacab = { forum = "jacab"; github = "turkeysanwich"; }; | ||
srxl = { forum = "srxl"; github = "sorixelle"; }; | ||
loggers = { forum = "loggers"; github = "purrpurrn"; }; | ||
gopher = { forum = "gopher"; github = "hedyhli"; }; | ||
nyawox = { forum = "nyawox"; github = "nyawox"; }; | ||
lychee = { forum = "lychee"; github = "itslychee"; }; | ||
licebmi = { forum = "licebmi"; github = "licebmi"; }; | ||
angryant = { forum = "angryant"; github = "angryant"; }; | ||
wamserma = { forum = "wamserma"; github = "wamserma"; }; | ||
psentee = { forum = "psentee"; github = "psentee"; }; | ||
raf = { forum = "raf"; github = "notashelf"; }; | ||
eri = { forum = "eri"; github = "eerii"; }; | ||
codingpuffin = { forum = "codingpuffin"; github = "nulhomme"; }; | ||
eljamm = { forum = "eljamm"; github = "eljamm"; }; | ||
nixfemby = { forum = "nixfemby"; github = "nixfemby"; }; | ||
daylinmorgan = { forum = "daylinmorgan"; github = "daylinmorgan"; }; | ||
federicoschonborn = { forum = "federicoschonborn"; github = "federicoschonborn"; }; | ||
yulian = { forum = "yulian"; github = "yulian"; }; | ||
aria = { forum = "aria"; github = "tcmal"; }; | ||
ircurry = { forum = "ircurry"; }; | ||
aprl = { forum = "aprl"; }; | ||
deivpaukst = { forum = "deivpaukst"; }; | ||
tau = { forum = "tau"; }; | ||
srestegosaurio = { forum = "srestegosaurio"; }; | ||
jakehamilton = { | ||
forum = "jakehamilton"; | ||
github = "jakehamilton"; | ||
}; | ||
jeff = { | ||
forum = "jeff"; | ||
github = "jeff-hykin"; | ||
}; | ||
axel = { | ||
forum = "axel"; | ||
github = "axelsilverdew"; | ||
}; | ||
isabel = { | ||
forum = "isabel"; | ||
github = "isabelroses"; | ||
}; | ||
imadnyc = { | ||
forum = "imadnyc"; | ||
github = "imadnyc"; | ||
}; | ||
liketechnik = { | ||
forum = "liketechnik"; | ||
github = "liketechnik"; | ||
}; | ||
nova = { | ||
forum = "nova"; | ||
github = "novamacintyre"; | ||
}; | ||
dfh = { | ||
forum = "dfh"; | ||
github = "dantefromhell"; | ||
}; | ||
c8h4 = { | ||
forum = "c8h4"; | ||
github = "cristoph-heiss"; | ||
}; | ||
"8bitbuddhist" = { | ||
forum = "8bitbuddhist"; | ||
github = "8bitbuddhist"; | ||
}; | ||
coded = { | ||
forum = "coded"; | ||
github = "thecodedprof"; | ||
}; | ||
vera = { | ||
forum = "vera"; | ||
github = "zumorica"; | ||
}; | ||
blue = { | ||
forum = "blue"; | ||
github = "bluelinden"; | ||
}; | ||
"0xmrtt" = { | ||
forum = "0xmrtt"; | ||
github = "0xmrtt"; | ||
}; | ||
bbjubjub = { | ||
forum = "bbjubjub"; | ||
github = "bbjubjub2494"; | ||
}; | ||
vlinkz = { | ||
forum = "vlinkz"; | ||
github = "vlinkz"; | ||
}; | ||
sigma = { | ||
forum = "sigma"; | ||
github = "sigmanificient"; | ||
}; | ||
minion = { | ||
forum = "minion"; | ||
github = "minion3665"; | ||
}; | ||
daholli = { | ||
forum = "daholli"; | ||
github = "daholli"; | ||
}; | ||
evanrichter = { | ||
forum = "evanrichter"; | ||
github = "evanrichter"; | ||
}; | ||
marshmallow = { | ||
forum = "marshmallow"; | ||
github = "mrshmllow"; | ||
}; | ||
trespaul = { | ||
forum = "trespaul"; | ||
github = "trespaul"; | ||
}; | ||
greyrat = { | ||
forum = "greyrat"; | ||
github = "greyratdev"; | ||
}; | ||
ptitfred = { | ||
forum = "ptitfred"; | ||
github = "ptitfred"; | ||
}; | ||
jacab = { | ||
forum = "jacab"; | ||
github = "turkeysanwich"; | ||
}; | ||
srxl = { | ||
forum = "srxl"; | ||
github = "sorixelle"; | ||
}; | ||
loggers = { | ||
forum = "loggers"; | ||
github = "purrpurrn"; | ||
}; | ||
gopher = { | ||
forum = "gopher"; | ||
github = "hedyhli"; | ||
}; | ||
nyawox = { | ||
forum = "nyawox"; | ||
github = "nyawox"; | ||
}; | ||
lychee = { | ||
forum = "lychee"; | ||
github = "itslychee"; | ||
}; | ||
licebmi = { | ||
forum = "licebmi"; | ||
github = "licebmi"; | ||
}; | ||
angryant = { | ||
forum = "angryant"; | ||
github = "angryant"; | ||
}; | ||
wamserma = { | ||
forum = "wamserma"; | ||
github = "wamserma"; | ||
}; | ||
psentee = { | ||
forum = "psentee"; | ||
github = "psentee"; | ||
}; | ||
raf = { | ||
forum = "raf"; | ||
github = "notashelf"; | ||
}; | ||
eri = { | ||
forum = "eri"; | ||
github = "eerii"; | ||
}; | ||
codingpuffin = { | ||
forum = "codingpuffin"; | ||
github = "nulhomme"; | ||
}; | ||
eljamm = { | ||
forum = "eljamm"; | ||
github = "eljamm"; | ||
}; | ||
nixfemby = { | ||
forum = "nixfemby"; | ||
github = "nixfemby"; | ||
}; | ||
daylinmorgan = { | ||
forum = "daylinmorgan"; | ||
github = "daylinmorgan"; | ||
}; | ||
federicoschonborn = { | ||
forum = "federicoschonborn"; | ||
github = "federicoschonborn"; | ||
}; | ||
yulian = { | ||
forum = "yulian"; | ||
github = "yulian"; | ||
}; | ||
aria = { | ||
forum = "aria"; | ||
github = "tcmal"; | ||
}; | ||
ircurry = { forum = "ircurry"; }; | ||
aprl = { forum = "aprl"; }; | ||
deivpaukst = { forum = "deivpaukst"; }; | ||
tau = { forum = "tau"; }; | ||
srestegosaurio = { forum = "srestegosaurio"; }; | ||
} |