diff options
Diffstat (limited to 'modules')
-rw-r--r-- | modules/profiles/cosmic/default.nix | 8 | ||||
-rw-r--r-- | modules/services/web/default.nix | 8 |
2 files changed, 8 insertions, 8 deletions
diff --git a/modules/profiles/cosmic/default.nix b/modules/profiles/cosmic/default.nix index 8a79845..7859a18 100644 --- a/modules/profiles/cosmic/default.nix +++ b/modules/profiles/cosmic/default.nix @@ -22,16 +22,16 @@ # use the clipboard manager. environment.sessionVariables.COSMIC_DATA_CONTROL_ENABLED = 1; - # Don't use flatpaks, which will pull in `cosmic-store`. - services.flatpak.enable = false; + # Enable flatpaks, which will pull in `cosmic-store`. + services.flatpak.enable = true; - # Don't include these packages either. + # Optionally exclude packages. environment.cosmic.excludePackages = with pkgs; [ cosmic-edit cosmic-player ]; - # Install any additional fonts. + # Install additional fonts. fonts.packages = with pkgs; [ iosevka-comfy.comfy-motion-fixed ]; diff --git a/modules/services/web/default.nix b/modules/services/web/default.nix index fe97c0e..0a7b392 100644 --- a/modules/services/web/default.nix +++ b/modules/services/web/default.nix @@ -15,14 +15,14 @@ in virtualHosts = { ${config.networking.domain}.extraConfig = '' handle /.well-known/matrix/server { - Content-Type application/json - Access-Control-Allow-Origin * + header Content-Type application/json + header Access-Control-Allow-Origin * respond `{"m.server": "${fqdn}:443"}` } handle /.well-known/matrix/client { - Content-Type application/json - Access-Control-Allow-Origin * + header Content-Type application/json + header Access-Control-Allow-Origin * respond `{"m.homeserver": {"base_url": "${baseUrl}"}}` } |