feat: enable nifi
This commit is contained in:
parent
eb56c94a41
commit
900dc5364e
3 changed files with 40 additions and 5 deletions
|
|
@ -152,6 +152,11 @@
|
||||||
"secrets/token-flurry".file = ../../secrets/github/flurry.age;
|
"secrets/token-flurry".file = ../../secrets/github/flurry.age;
|
||||||
"secrets/token-nixconf".file = ../../secrets/github/nixconf.age;
|
"secrets/token-nixconf".file = ../../secrets/github/nixconf.age;
|
||||||
"secrets/nix-store-key".file = ../../secrets/nix-serve/private.age;
|
"secrets/nix-store-key".file = ../../secrets/nix-serve/private.age;
|
||||||
|
"secrets/nifi-password" = {
|
||||||
|
file = ../../secrets/nifi/password.age;
|
||||||
|
owner = "nifi";
|
||||||
|
group = "nifi";
|
||||||
|
};
|
||||||
"rsecrets/radicale" = {
|
"rsecrets/radicale" = {
|
||||||
file = ../../secrets/radicale/htpasswd.age;
|
file = ../../secrets/radicale/htpasswd.age;
|
||||||
owner = "radicale";
|
owner = "radicale";
|
||||||
|
|
@ -161,6 +166,12 @@
|
||||||
};
|
};
|
||||||
|
|
||||||
services = {
|
services = {
|
||||||
|
nifi = {
|
||||||
|
enable = true;
|
||||||
|
enableHTTPS = true;
|
||||||
|
initUser = "itepastra";
|
||||||
|
initPasswordFile = config.age.secrets."secrets/nifi-password".path;
|
||||||
|
};
|
||||||
github-runners = {
|
github-runners = {
|
||||||
flurry-runner = {
|
flurry-runner = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
|
@ -285,6 +296,8 @@
|
||||||
80 # http
|
80 # http
|
||||||
443 # https
|
443 # https
|
||||||
|
|
||||||
|
8443 # nifi
|
||||||
|
|
||||||
25565 # minecraft
|
25565 # minecraft
|
||||||
24454 # minecraft (voice)
|
24454 # minecraft (voice)
|
||||||
|
|
||||||
|
|
|
||||||
7
secrets/nifi/password.age
Normal file
7
secrets/nifi/password.age
Normal file
|
|
@ -0,0 +1,7 @@
|
||||||
|
age-encryption.org/v1
|
||||||
|
-> ssh-ed25519 tcnWbQ Fx1eAQsq7ITOjvUTuo/qT/aFL/d/51o1P3ZpXVW1JwU
|
||||||
|
q0yCm3pE0AOSu/IceEo/DiYRnsrE9XJfIk0f9U4FrvM
|
||||||
|
-> ssh-ed25519 ropO2g 6Q0hQtHJZTTm4euojkXCXFb4oqrKwSygIKAtterShnY
|
||||||
|
ZI0Mu7M2sEURXpekQkWeuAdqlryVIOBgFUWveRLupo8
|
||||||
|
--- Ofn3ZTIEzI9xcOis/1JPcyiJCXhzlyiXb4NOutFdrWE
|
||||||
|
œ<EFBFBD>ë™2{ó÷q¿þH{¦1Ä5<C384>ýYÛð9¸õ”±—“¤±¾FaSB¦+[Î}¡•«Ø#óÝ qésrœ".\¢ð™áE
|
||||||
|
|
@ -6,9 +6,24 @@ in
|
||||||
"restic/env.age".publicKeys = [ noa ];
|
"restic/env.age".publicKeys = [ noa ];
|
||||||
"restic/repo.age".publicKeys = [ noa ];
|
"restic/repo.age".publicKeys = [ noa ];
|
||||||
"restic/password.age".publicKeys = [ noa ];
|
"restic/password.age".publicKeys = [ noa ];
|
||||||
"github/flurry.age".publicKeys = [ noa nuOS ];
|
"github/flurry.age".publicKeys = [
|
||||||
"github/nixconf.age".publicKeys = [ noa nuOS ];
|
noa
|
||||||
"nix-serve/private.age".publicKeys = [ noa nuOS ];
|
nuOS
|
||||||
"radicale/htpasswd.age".publicKeys = [ noa nuOS ];
|
];
|
||||||
|
"github/nixconf.age".publicKeys = [
|
||||||
|
noa
|
||||||
|
nuOS
|
||||||
|
];
|
||||||
|
"nix-serve/private.age".publicKeys = [
|
||||||
|
noa
|
||||||
|
nuOS
|
||||||
|
];
|
||||||
|
"radicale/htpasswd.age".publicKeys = [
|
||||||
|
noa
|
||||||
|
nuOS
|
||||||
|
];
|
||||||
|
"nifi/password.age".publicKeys = [
|
||||||
|
noa
|
||||||
|
nuOS
|
||||||
|
];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue