35 lines
999 B
Nix
35 lines
999 B
Nix
{config, ...}: {
|
|
imports = [
|
|
../util/firefox-webapp.nix
|
|
];
|
|
programs.firefox.webapps = {
|
|
"Microsoft-Teams" = {
|
|
url = "https://teams.microsoft.com";
|
|
id = 1;
|
|
extraSettings = config.programs.firefox.profiles.default.settings;
|
|
name = "Microsoft Teams";
|
|
icon = ./icons/ms_teams.png;
|
|
};
|
|
"Facebook-Messenger" = {
|
|
url = "https://www.messenger.com";
|
|
id = 2;
|
|
extraSettings = config.programs.firefox.profiles.default.settings;
|
|
name = "Facebook Messenger";
|
|
icon = ./icons/fb_msg.png;
|
|
};
|
|
"Syncthing" = {
|
|
url = "http://127.0.0.1:8384";
|
|
id = 3;
|
|
extraSettings = config.programs.firefox.profiles.default.settings;
|
|
name = "Syncthing";
|
|
icon = ./icons/syncthing.png;
|
|
};
|
|
"StudyTAFE" = {
|
|
url = "https://www.studytafensw.edu.au";
|
|
id = 4;
|
|
extraSettings = config.programs.firefox.profiles.default.settings;
|
|
name = "TAFE Study";
|
|
icon = ./icons/tafe.jpg;
|
|
};
|
|
};
|
|
}
|