shuffle some prefs

This commit is contained in:
atagen 2024-05-11 15:10:24 +10:00
parent 3192b6ca09
commit 83f64681fd
23 changed files with 89 additions and 68 deletions

23
home/modules/chat.nix Normal file
View file

@ -0,0 +1,23 @@
{config, ...}: {
imports = [
../util/firefox-webapp.nix
../util/flatpak.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;
};
};
flatpaks = ["im.fluffychat.Fluffychat"];
}