0
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-07-13 21:50:33 +03:00

nixos/stargazer: fix route ordering

This commit is contained in:
gaykitty 2023-04-29 20:54:24 -04:00 committed by Anderson Torres
parent 3c5e8175ac
commit d4f3dd4f71
2 changed files with 58 additions and 27 deletions

View file

@ -7,13 +7,14 @@
geminiserver = { pkgs, ... }: {
services.stargazer = {
enable = true;
routes = {
"localhost" = {
routes = [
{
route = "localhost";
root = toString (pkgs.writeTextDir "index.gmi" ''
# Hello NixOS!
'');
};
};
}
];
};
};
};