two gnome dconf settings

This commit is contained in:
Vinzenz Schroeter 2025-09-16 19:46:39 +02:00
parent edb4ffcd4a
commit b715206b74

View file

@ -1,4 +1,4 @@
{ pkgs, ... }:
{ pkgs, lib, ... }:
{
config = {
home.packages = with pkgs; [
@ -26,6 +26,8 @@
switch-applications = [ "<Super>Tab" ];
switch-applications-backward = [ "<Shift><Super>Tab" ];
};
"org/gnome/desktop/session".idle-delay = lib.hm.gvariant.mkUint32 300;
"org/gnome/Connections".first-run = false;
};
};
}