create public release

This commit is contained in:
2023-07-03 22:35:58 +02:00
commit e24157a614
19 changed files with 1864 additions and 0 deletions

View File

@@ -0,0 +1,35 @@
{
config,
pkgs,
lib,
...
}:
with lib; {
xdg.configFile."whatsapp-for-linux/settings.conf".source = builtins.toFile "settings.conf" (
generators.toINI {} {
General = {
zoom_level = 1;
close_to_tray = false;
};
Network = {
allow_permissions = true;
};
web = {
allow-permissions = true;
hw-accel = 1;
};
general = {
notification-sounds = true;
close-to-tray = true;
start-in-tray = false;
};
appearance = {
prefer-dark-theme = true;
};
}
);
}