Compare commits

...
3 Commits
Author SHA1 Message Date
kurogeek 20868891e8 clanService/paperless: drop psycopg test workaround
The test_stats_connect override was a stopgap for nixpkgs#494510, fixed
upstream in #494536. It forced a rebuild of the whole python package set
(psycopg -> pytest-postgresql -> sqlframe -> narwhals -> scikit-learn),
which broke on a flaky scikit-learn test.
2026-09-07 09:37:14 +00:00
kurogeek 258237e74f machines/sirius: migrate journald.extraConfig to settings
services.journald.extraConfig was removed upstream; use
services.journald.settings.Journal.Storage instead.
2026-09-07 09:37:14 +00:00
kurogeek aa94436b2c inputs/nixpkgs: bump to 0af3d140
The locked e8be7818 has no cached stdenv: its linux-headers-6.18.7
no-relocs.patch fails to apply, so every build bootstrapped stdenv from
source and failed. 0af3d140 (2026-09-05) is fully substitutable.
2026-09-07 09:37:14 +00:00
3 changed files with 4 additions and 18 deletions
Generated
+3 -3
View File
@@ -752,11 +752,11 @@
}, },
"nixpkgs_3": { "nixpkgs_3": {
"locked": { "locked": {
"lastModified": 1781359544, "lastModified": 1788608636,
"narHash": "sha256-iUuzKQcyXvopYDDzFpMK5eQKP3WIJExYny2kJtbgUcE=", "narHash": "sha256-RqeFOwW329f4i1f5QlJgQYwgEZvxIHJsUYlzIBxsKsY=",
"owner": "nixos", "owner": "nixos",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "e8be7818e19ada32105a8af937a6a473b38167ca", "rev": "0af3d1402dec3fc7e93635e511d1f7428c89cebf",
"type": "github" "type": "github"
}, },
"original": { "original": {
+1 -3
View File
@@ -60,9 +60,7 @@
}; };
}; };
services.journald.extraConfig = '' services.journald.settings.Journal.Storage = "none";
Storage=none
'';
systemd = { systemd = {
coredump.enable = false; coredump.enable = false;
-12
View File
@@ -16,18 +16,6 @@
... ...
}: }:
{ {
nixpkgs.overlays = [
(final: prev: {
pythonPackagesExtensions = prev.pythonPackagesExtensions ++ [
(pyFinal: pyPrev: {
psycopg = pyPrev.psycopg.overrideAttrs (old: {
disabledTests = old.disabledTests ++ [ "test_stats_connect" ];
});
})
];
})
];
services.paperless = { services.paperless = {
enable = lib.mkDefault true; enable = lib.mkDefault true;
}; };