summaryrefslogtreecommitdiffstats
path: root/services
diff options
context:
space:
mode:
authorSilas Schöffel <sils@sils.li>2024-04-24 09:40:35 +0200
committerSilas Schöffel <sils@sils.li>2024-04-24 09:40:35 +0200
commit1f461e48e92cf815ac26f89cc80a1b123128928c (patch)
treec2e8df2a1d14e1e0bea59fe988d001e2a2f61dbb /services
parentfix(system/services/taskserver): Add required kernel settings (diff)
downloadnixos-server-1f461e48e92cf815ac26f89cc80a1b123128928c.zip
fix(treewide): move former git-crypted files to correct location
They were accidentally added at the wrong location in dd4b6bcfc16c7c795b697195eb6703966352d9f4
Diffstat (limited to 'services')
-rw-r--r--services/mail/users.nix48
-rw-r--r--services/nginx/hosts.nix12
-rw-r--r--services/taskserver/organisations.nix14
3 files changed, 0 insertions, 74 deletions
diff --git a/services/mail/users.nix b/services/mail/users.nix
deleted file mode 100644
index eb9c714..0000000
--- a/services/mail/users.nix
+++ /dev/null
@@ -1,48 +0,0 @@
-{...}: {
- domains = [
- "vhack.eu"
-
- "s-schoeffel.de"
- "b-peetz.de"
-
- "sils.li"
- "nightingale.sils.li"
- "sils.sils.li"
- ];
-
- loginAccounts = {
- "sils@vhack.eu" = {
- hashedPassword = "$2b$05$RW/Svgk7iGxvP5W7ZwUZ1e.a3fj4fteevb2MtfFYYD0d1DQ17y9Fm";
- };
- "soispha@vhack.eu" = {
- hashedPassword = "$2b$05$XX36sJuHNbTFvi8DFldscOeQBHahluSkiUqD9QGzQaET7NJusSuQW";
- };
-
- "benedikt.peetz@b-peetz.de" = {
- hashedPassword = "$2b$05$MfET8utot2OolPZNASqoDe4VXNoG2chnEWhdfQ2E92mit0TvI2gBy";
- aliases = ["@b-peetz.de"];
- };
- "silas.schoeffel@s-schoeffel.de" = {
- hashedPassword = "$2b$05$Qb8rl7ncpCcTbsSdsduJBuOITp8RTD6sfOTjuxJsVtD9vjAYY9n8e";
- aliases = ["@s-schoeffel.de"];
- };
-
- "nightingale@vhack.eu" = {
- hashedPassword = "$2b$05$nDKVVq1EktKXWqGFhnOLP.plLovXFyvWSuptK9GIkxA5DScKFx6YS";
- aliases = [
- "@nightingale.sils.li"
- ];
- };
- "sils@sils.li" = {
- hashedPassword = "$2b$05$Ebzh2ZhuWkz1p4tqJ172IejNZg10FtCxPDY4k6umYrpirXg7ezIRq";
- aliases = [
- "@sils.sils.li"
- "@sils.li"
- ];
- };
- # Mail-Account used by hosted software
- "mastodon@vhack.eu" = {
- hashedPassword = "$2b$05$pSby3x2p3cHg0FyAE8IiJ.nYUqtAIR10JA8HNpHwMAiLXqc.ltSK.";
- };
- };
-}
diff --git a/services/nginx/hosts.nix b/services/nginx/hosts.nix
deleted file mode 100644
index 5d27af7..0000000
--- a/services/nginx/hosts.nix
+++ /dev/null
@@ -1,12 +0,0 @@
-{...}: [
- {
- domain = "vhack.eu";
- root = "/etc/nginx/websites/vhack.eu";
- url = "https://codeberg.org/vhack.eu/website.git";
- }
- {
- domain = "b-peetz.de";
- root = "/etc/nginx/websites/b-peetz.de";
- url = "https://codeberg.org/bpeetz/b-peetz.de.git";
- }
-]
diff --git a/services/taskserver/organisations.nix b/services/taskserver/organisations.nix
deleted file mode 100644
index c3ad966..0000000
--- a/services/taskserver/organisations.nix
+++ /dev/null
@@ -1,14 +0,0 @@
-{
- vhack = {
- users = [
- "soispha"
- ];
- };
- soispha = {
- users = [
- "soispha"
- "android-mobile"
- "android-tab"
- ];
- };
-}