From 4c16c8c2fac5b01b5a48b4a1f8eb291476ebee2e Mon Sep 17 00:00:00 2001 From: Jared Kling Date: Sun, 12 Jan 2025 00:07:35 -0600 Subject: [PATCH] start ssh, disable gnome keyring --- modules/common.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/modules/common.nix b/modules/common.nix index cc098b0..3f33f34 100644 --- a/modules/common.nix +++ b/modules/common.nix @@ -4,6 +4,7 @@ stylix, username, ghostty, + lib, ... }: { @@ -35,6 +36,9 @@ }; }; + programs.ssh.startAgent = true; # Use OpenSSH agent instead + services.gnome.gnome-keyring.enable = lib.mkForce false; # Disable GNOME keyring + hardware.bluetooth.enable = true; hardware.pulseaudio.enable = false;