fmt
This commit is contained in:
parent
51a7660478
commit
8cc05e8e40
6 changed files with 38 additions and 39 deletions
|
|
@ -20,4 +20,3 @@
|
|||
};
|
||||
};
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -1,7 +1,10 @@
|
|||
{ config, pkgs, ... }:
|
||||
|
||||
let
|
||||
calendarAggregate = pkgs.writers.writePython3 "calendar-aggregate.py" { libraries = [ pkgs.python3Packages.icalendar ]; } ''
|
||||
calendarAggregate =
|
||||
pkgs.writers.writePython3 "calendar-aggregate.py"
|
||||
{ libraries = [ pkgs.python3Packages.icalendar ]; }
|
||||
''
|
||||
from pathlib import Path
|
||||
from icalendar import Calendar
|
||||
|
||||
|
|
@ -93,4 +96,3 @@ in
|
|||
};
|
||||
};
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@
|
|||
settings = {
|
||||
homeserverUrl = "https://matrix.${config.networking.domain}";
|
||||
#managementRoom = "!ZYWNuaQBkkenNklCSm:matrix.org"; # #cccb-moderators:berlin.ccc.de
|
||||
managementRoom = "#cccb-moderators:berlin.ccc.de"; #"!ZYWNuaQBkkenNklCSm:matrix.org";
|
||||
managementRoom = "#cccb-moderators:berlin.ccc.de"; # "!ZYWNuaQBkkenNklCSm:matrix.org";
|
||||
autojoinOnlyIfManager = true;
|
||||
recordIgnoredInvites = true;
|
||||
roomStateBackingStore.enabled = true;
|
||||
|
|
|
|||
|
|
@ -7,11 +7,13 @@ let
|
|||
|
||||
${builtins.readFile ./caldav-export.py}
|
||||
'';
|
||||
pythonEnv = pkgs.python3.withPackages (ps: with ps; [
|
||||
pythonEnv = pkgs.python3.withPackages (
|
||||
ps: with ps; [
|
||||
caldav
|
||||
icalendar
|
||||
pyyaml
|
||||
]);
|
||||
]
|
||||
);
|
||||
in
|
||||
{
|
||||
systemd = {
|
||||
|
|
@ -34,4 +36,3 @@ in
|
|||
};
|
||||
};
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -54,10 +54,7 @@ in
|
|||
_sql
|
||||
_monitoring
|
||||
];
|
||||
"postgres-forgejo.age".publicKeys =
|
||||
xengi
|
||||
++ shokinn
|
||||
++ [ _sql ];
|
||||
"postgres-forgejo.age".publicKeys = xengi ++ shokinn ++ [ _sql ];
|
||||
"postgres-extkuma.age".publicKeys = xengi ++ [ _sql ];
|
||||
"postgres-baikal.age".publicKeys = xengi ++ [
|
||||
_sql
|
||||
|
|
|
|||
Loading…
Reference in a new issue