feat: so many appservices, so little time...

This commit is contained in:
Kat Inskip 2024-04-21 15:04:27 -07:00
parent 2b5630d487
commit bd69ebe901
Signed by: kat
GPG key ID: 465E64DECEA8CF0F
16 changed files with 655 additions and 65 deletions

View file

@ -0,0 +1,15 @@
{
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
'';
}