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