2 files changed, 5 insertions, 3 deletions
diff --git a/host/Rory-desktop/configuration.nix b/host/Rory-desktop/configuration.nix
index dae5f44..654b245 100644
--- a/host/Rory-desktop/configuration.nix
+++ b/host/Rory-desktop/configuration.nix
@@ -24,7 +24,7 @@ args@{
./optional/gui/x11.nix
./optional/gui/wayland.nix
- #./printing.nix
+ ./printing.nix
#./ollama.nix
];
@@ -121,6 +121,8 @@ args@{
};
environment.systemPackages = with pkgs; [
+ eog
+ mpv
libreoffice
qt6.qtwayland
@@ -273,6 +275,7 @@ args@{
};
networking.hosts."127.0.0.1" = builtins.attrNames config.services.nginx.virtualHosts;
+ services.gvfs.enable = true;
system.stateVersion = "22.11"; # DO NOT EDIT!
}
diff --git a/host/Rory-nginx/services/matrix/grapevine.nix b/host/Rory-nginx/services/matrix/grapevine.nix
index 0f0006b..2214ab4 100755
--- a/host/Rory-nginx/services/matrix/grapevine.nix
+++ b/host/Rory-nginx/services/matrix/grapevine.nix
@@ -15,12 +15,11 @@
port = 6167;
}
];
+ server_discovery.client.base_url = "https://conduit.rory.gay"; # This is required for some reason
database = {
backend = "rocksdb";
};
-
- allow_check_for_updates = false;
allow_registration = false;
#log = "info";
|