mirror of
https://github.com/kittywitch/nixfiles.git
synced 2026-02-09 12:29:19 -08:00
15 lines
355 B
Nix
15 lines
355 B
Nix
{
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}: let
|
|
inherit (lib.strings) fileContents;
|
|
in {
|
|
home.sessionVariables.GSM_SKIP_SSH_AGENT_WORKAROUND = "1";
|
|
|
|
# Disable gnome-keyring ssh-agent
|
|
xdg.configFile."autostart/gnome-keyring-ssh.desktop".text = ''
|
|
${fileContents "${pkgs.gnome3.gnome-keyring}/etc/xdg/autostart/gnome-keyring-ssh.desktop"}
|
|
Hidden=true
|
|
'';
|
|
}
|