Update gnome services

This commit is contained in:
DashieTM 2024-12-18 23:25:10 +01:00
parent 37606eae74
commit b0054a3fe1

View file

@ -28,7 +28,20 @@
config = lib.mkIf config.mods.gnomeServices.enable ( config = lib.mkIf config.mods.gnomeServices.enable (
lib.optionalAttrs (options ? services.gnome.gnome-keyring) { lib.optionalAttrs (options ? services.gnome.gnome-keyring) {
programs.dconf.enable = true; programs.dconf = {
enable = true;
profiles.user.databases = [
{
settings = {
"org/gnome/desktop/interface" = {
cursor-theme = config.mods.stylix.cursor.name;
cursor-size = lib.gvariant.mkInt32 config.mods.stylix.cursor.size;
color-scheme = "prefer-dark";
};
};
}
];
};
environment.extraInit = '' environment.extraInit = ''
export SSH_AUTH_SOCK="$XDG_RUNTIME_DIR/keyring/ssh" export SSH_AUTH_SOCK="$XDG_RUNTIME_DIR/keyring/ssh"
''; '';