Update
This commit is contained in:
@@ -17,7 +17,7 @@ feel free to contribute <3 ([CONTRIBUTING.md](CONTRIBUTING.md))
|
|||||||
- [ ] Night-shift status
|
- [ ] Night-shift status
|
||||||
|
|
||||||
- [ ] Hyprland
|
- [ ] 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
|
- [ ] Animations based on app name
|
||||||
- [ ] Wofi: popin
|
- [ ] Wofi: popin
|
||||||
- [ ] Wlogout: fade in
|
- [ ] Wlogout: fade in
|
||||||
|
|||||||
@@ -1,4 +1,5 @@
|
|||||||
# Nextcloud
|
# Nextcloud
|
||||||
|
{ config, ... }:
|
||||||
let hostname = "cloud.anotherhadi.com";
|
let hostname = "cloud.anotherhadi.com";
|
||||||
in {
|
in {
|
||||||
services.nextcloud = {
|
services.nextcloud = {
|
||||||
@@ -14,6 +15,11 @@ in {
|
|||||||
[ "localhost" "127.0.0.1" "192.168.2.23" "cloud.anotherhadi.com" ];
|
[ "localhost" "127.0.0.1" "192.168.2.23" "cloud.anotherhadi.com" ];
|
||||||
};
|
};
|
||||||
nginx.recommendedHttpHeaders = true;
|
nginx.recommendedHttpHeaders = true;
|
||||||
|
extraApps = {
|
||||||
|
inherit (config.services.nextcloud.package.packages.apps)
|
||||||
|
contacts calendar tasks;
|
||||||
|
};
|
||||||
|
extraAppsEnable = true;
|
||||||
};
|
};
|
||||||
services.nginx.virtualHosts.${hostname} = {
|
services.nginx.virtualHosts.${hostname} = {
|
||||||
forceSSL = false;
|
forceSSL = false;
|
||||||
|
|||||||
Reference in New Issue
Block a user