summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJakub Stachurski <j.stachurski@student.utwente.nl>2026-05-13 19:38:14 +0200
committerJakub Stachurski <j.stachurski@student.utwente.nl>2026-05-13 19:38:14 +0200
commite934c3e5032c0437c0aae3c626b23ed5b1eceb50 (patch)
tree93114783a0b23eb018abe8955d3af0e0d1638444
parent2e96b20f6dc6ae0aac2ca58db111d00ac0d7ca85 (diff)
Update and fix c10y and TERM being set to "nvim"
-rw-r--r--flake.lock37
-rw-r--r--flake.nix2
-rw-r--r--home-modules/apps/nvim/default.nix2
-rw-r--r--services/continuwuity.nix2
4 files changed, 23 insertions, 20 deletions
diff --git a/flake.lock b/flake.lock
index 9fac7c1..897b402 100644
--- a/flake.lock
+++ b/flake.lock
@@ -31,17 +31,18 @@
]
},
"locked": {
- "lastModified": 1777481115,
- "narHash": "sha256-9YKAG9ErJz4/HpiMpmixKJo+IKkRnXhoaSfkoOyj2o0=",
- "owner": "continuwuity",
- "repo": "continuwuity",
- "rev": "e6cae5b8eda99337ca78b1500e913932f966c9f4",
- "type": "github"
+ "lastModified": 1778185180,
+ "narHash": "sha256-4zs26kTqwkJV7x+Sm12LnR02bbyH0f6Itbz7bDKUyts=",
+ "ref": "refs/tags/v0.5.9",
+ "rev": "051449118911b03960d5d09f630d7d2959c8330c",
+ "revCount": 6620,
+ "type": "git",
+ "url": "https://forgejo.ellis.link/continuwuation/continuwuity.git"
},
"original": {
- "owner": "continuwuity",
- "repo": "continuwuity",
- "type": "github"
+ "ref": "refs/tags/v0.5.9",
+ "type": "git",
+ "url": "https://forgejo.ellis.link/continuwuation/continuwuity.git"
}
},
"crane": {
@@ -144,11 +145,11 @@
]
},
"locked": {
- "lastModified": 1777476904,
- "narHash": "sha256-EeLoE8n4+QCbteyAsYXxhfr97RFfWL1ga0xwfL6lpKw=",
+ "lastModified": 1778681890,
+ "narHash": "sha256-RK4sTgei29wBzLu+e4ljeixKutWhbMygFsdxdFKpZOU=",
"owner": "nix-community",
"repo": "home-manager",
- "rev": "8c8e5389e75a36bee53920de8ee24f017b3ae03e",
+ "rev": "7654d90b94bab7eba3a52fd6f73b3f5a4c544fa2",
"type": "github"
},
"original": {
@@ -159,11 +160,11 @@
},
"nixpkgs": {
"locked": {
- "lastModified": 1777268161,
- "narHash": "sha256-bxrdOn8SCOv8tN4JbTF/TXq7kjo9ag4M+C8yzzIRYbE=",
+ "lastModified": 1778443072,
+ "narHash": "sha256-zi7/fsqM/kFdNuED//4WOCUtezGtKKqRNORjMvfwjnA=",
"owner": "nixos",
"repo": "nixpkgs",
- "rev": "1c3fe55ad329cbcb28471bb30f05c9827f724c76",
+ "rev": "da5ad661ba4e5ef59ba743f0d112cbc30e474f32",
"type": "github"
},
"original": {
@@ -239,11 +240,11 @@
]
},
"locked": {
- "lastModified": 1777338324,
- "narHash": "sha256-bc+ZZCmOTNq86/svGnw0tVpH7vJaLYvGLLKFYP08Q8E=",
+ "lastModified": 1777944972,
+ "narHash": "sha256-VfGRo1qTBKOe3s2gOv8LSoA6Fk19PvBlwQ1ECN0Evn8=",
"owner": "Mic92",
"repo": "sops-nix",
- "rev": "8eaee5c45428b28b8c47a83e4c09dccec5f279b5",
+ "rev": "c591bf665727040c6cc5cb409079acb22dcce33c",
"type": "github"
},
"original": {
diff --git a/flake.nix b/flake.nix
index 339a2d6..f99e9dd 100644
--- a/flake.nix
+++ b/flake.nix
@@ -30,7 +30,7 @@
inputs.nixpkgs.follows = "nixpkgs";
};
continuwuity = {
- url = "github:continuwuity/continuwuity?tag=5.7.0";
+ url = "git+https://forgejo.ellis.link/continuwuation/continuwuity.git?ref=refs/tags/v0.5.9";
inputs.nixpkgs.follows = "nixpkgs";
inputs.treefmt-nix.follows = "treefmt-nix";
};
diff --git a/home-modules/apps/nvim/default.nix b/home-modules/apps/nvim/default.nix
index 4dfbd17..4c77646 100644
--- a/home-modules/apps/nvim/default.nix
+++ b/home-modules/apps/nvim/default.nix
@@ -16,7 +16,7 @@ in
config = lib.mkIf config.homeapps.nvim.enable {
home.sessionVariables = {
- TERM = "nvim";
+ EDITOR = "nvim";
};
programs.neovim = {
diff --git a/services/continuwuity.nix b/services/continuwuity.nix
index 067a41b..31974fa 100644
--- a/services/continuwuity.nix
+++ b/services/continuwuity.nix
@@ -59,6 +59,8 @@ in
allow_federation = cfg.allowFederation;
trusted_servers = cfg.trustedServers;
+ ip_lookup_strategy = 4;
+
# Host the server on a unix-socket and use nginx to connect to that socket.
address = null;
unix_socket_path = "/run/continuwuity/continuwuity.sock";