add virtual keyboard

This commit is contained in:
Yan Lin 2025-11-03 00:56:19 +01:00
parent 17b8993a47
commit ca5e4b89a9

View file

@ -53,12 +53,15 @@
]; ];
}; };
# Prevent automatic suspend on AC power (GNOME power settings) # GNOME settings (prevent suspend, enable virtual keyboard)
programs.dconf.profiles.user.databases = [{ programs.dconf.profiles.user.databases = [{
settings = { settings = {
"org/gnome/settings-daemon/plugins/power" = { "org/gnome/settings-daemon/plugins/power" = {
sleep-inactive-ac-type = "nothing"; sleep-inactive-ac-type = "nothing";
}; };
"org/gnome/desktop/a11y/applications" = {
screen-keyboard-enabled = true;
};
}; };
}]; }];