use nix-maid

This commit is contained in:
Henry Hiles 2025-09-06 17:39:26 -04:00
commit d6851d5869
No known key found for this signature in database
6 changed files with 51 additions and 25 deletions

View file

@ -1,7 +1,21 @@
{config, ...}: {
{
config,
pkgs,
...
}: {
services = {
redlib = {
enable = true;
package = pkgs.redlib.overrideAttrs (oldAttrs: {
doCheck = false;
src = pkgs.fetchFromGitHub {
owner = "chowder";
repo = "redlib";
rev = "47ef6a06d47416559609c385d5234d155938f3e3";
hash = "sha256-gsgWqVOUizSYFjSg9x+dG1VRWabvjpuCGjaG94q1cQY=";
};
});
address = "127.0.0.6";
port = 8082;
settings.REDLIB_DEFAULT_THEME = "nord";