feat: skynet admins are committee
All checks were successful
Build_Deploy / linter (push) Successful in 6s
Build_Deploy / build (push) Successful in 3m56s
Build_Deploy / deploy_dns (push) Successful in 39s
Build_Deploy / deploy_active (active) (push) Successful in 49s
Build_Deploy / deploy_active (active-core) (push) Successful in 1m20s
Build_Deploy / deploy_active (active-ext) (push) Successful in 26s

This commit is contained in:
silver 2024-08-26 23:48:59 +01:00
parent 31dc474c84
commit 38e0322f67
Signed by: silver
GPG key ID: 36F93D61BAD3FD7D

View file

@ -1,6 +1,11 @@
{lib, ...}: {
lib,
config,
...
}:
with lib; let with lib; let
port_backend = "8087"; port_backend = "8087";
cfg = config.skynet.users;
in { in {
options.skynet = { options.skynet = {
users = { users = {
@ -44,19 +49,24 @@ in {
config.skynet = { config.skynet = {
users = { users = {
committee = [ committee = lib.lists.unique (
"silver" # Committee
"eoghanconlon73" [
"sidhiel" "silver"
"maksimsger1" "eoghanconlon73"
"kaiden" "sidhiel"
"pine" "maksimsger1"
"nanda" "kaiden"
"sourabh1805" "pine"
"kronsy" "nanda"
"skyapples" "sourabh1805"
"emi05h" "kronsy"
]; "skyapples"
"emi05h"
]
# Admins are part of Committee as well
++ cfg.admin
);
admin = [ admin = [
"silver" "silver"
"evanc" "evanc"