all/home: separate home-manager config per host

This commit is contained in:
2025-06-08 17:42:54 +02:00
parent 55ab5a06eb
commit 64ba2b7193
12 changed files with 1076 additions and 8 deletions

View File

@@ -0,0 +1,31 @@
{ 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;
};
}
);
}