20 lines
509 B
Nix
20 lines
509 B
Nix
{ config, ... }:
|
|
{
|
|
imports = [
|
|
../util/firefox-webapp.nix
|
|
];
|
|
programs.firefox.webapps = {
|
|
"Syncthing" = {
|
|
url = "http://127.0.0.1:8384";
|
|
extraSettings = config.programs.firefox.profiles.default.settings;
|
|
name = "Syncthing";
|
|
icon = ../icons/syncthing.png;
|
|
};
|
|
"Open-WebUI" = {
|
|
url = "http://127.0.0.1:8088";
|
|
extraSettings = config.programs.firefox.profiles.default.settings;
|
|
name = "Open-WebUI";
|
|
icon = ../icons/openwebui.png;
|
|
};
|
|
};
|
|
}
|