Compare commits

...

2 Commits

Author SHA1 Message Date
4db98ae432 mastus: fake nextcloud api 2021-07-14 14:10:24 +02:00
199a195ef8 switch to pipewire 2021-07-14 14:04:43 +02:00
2 changed files with 11 additions and 1 deletions

@ -2,7 +2,7 @@
{
imports = [
./pulseaudio.nix
./pipewire.nix
];
i18n.inputMethod = {

@ -38,6 +38,16 @@ in
locations."/" = {
proxyPass = "http://127.0.0.1:${toString radicalePort}";
};
# Fake nextcloud api:
# https://gitlab.gnome.org/GNOME/gnome-online-accounts/-/issues/1#note_857357
extraConfig = ''
rewrite ^/remote.php/carddav / redirect;
rewrite ^/remote.php/caldav / redirect;
location /remote.php/webdav {
return 200;
}
'';
};
};