all/home: separate home-manager config per host
This commit is contained in:
31
home/common/whatsapp-for-linux.nix
Normal file
31
home/common/whatsapp-for-linux.nix
Normal 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;
|
||||
};
|
||||
}
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user