feat: skynet admins are committee

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
port_backend = "8087";
cfg = config.skynet.users;
in {
options.skynet = {
users = {
@ -44,19 +49,24 @@ in {
config.skynet = {
users = {
committee = [
"silver"
"eoghanconlon73"
"sidhiel"
"maksimsger1"
"kaiden"
"pine"
"nanda"
"sourabh1805"
"kronsy"
"skyapples"
"emi05h"
];
committee = lib.lists.unique (
# Committee
[
"silver"
"eoghanconlon73"
"sidhiel"
"maksimsger1"
"kaiden"
"pine"
"nanda"
"sourabh1805"
"kronsy"
"skyapples"
"emi05h"
]
# Admins are part of Committee as well
++ cfg.admin
);
admin = [
"silver"
"evanc"