From 652377bd9bd80e7323bfaf15b9954bbc1502c66a Mon Sep 17 00:00:00 2001 From: Hadi <112569860+anotherhadi@users.noreply.github.com> Date: Wed, 26 Jun 2024 22:17:03 +0200 Subject: [PATCH] Update --- docs/TODO.md | 2 +- hosts/server/modules/exposed/nextcloud.nix | 6 ++++++ 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/docs/TODO.md b/docs/TODO.md index 4311fec..c5c0bbc 100644 --- a/docs/TODO.md +++ b/docs/TODO.md @@ -17,7 +17,7 @@ feel free to contribute <3 ([CONTRIBUTING.md](CONTRIBUTING.md)) - [ ] Night-shift status - [ ] Hyprland - - [ ] Make hyprcursor work + - [ ] Implement Hyprcursor (see home/system/hyprland/hyprcursor.nix: Not working, small cursor on some apps, big one on others) - [ ] Animations based on app name - [ ] Wofi: popin - [ ] Wlogout: fade in diff --git a/hosts/server/modules/exposed/nextcloud.nix b/hosts/server/modules/exposed/nextcloud.nix index ace8c5c..71c6050 100644 --- a/hosts/server/modules/exposed/nextcloud.nix +++ b/hosts/server/modules/exposed/nextcloud.nix @@ -1,4 +1,5 @@ # Nextcloud +{ config, ... }: let hostname = "cloud.anotherhadi.com"; in { services.nextcloud = { @@ -14,6 +15,11 @@ in { [ "localhost" "127.0.0.1" "192.168.2.23" "cloud.anotherhadi.com" ]; }; nginx.recommendedHttpHeaders = true; + extraApps = { + inherit (config.services.nextcloud.package.packages.apps) + contacts calendar tasks; + }; + extraAppsEnable = true; }; services.nginx.virtualHosts.${hostname} = { forceSSL = false;