From 97e8b1f963552e924e0976a6de6f962e55b7e24a Mon Sep 17 00:00:00 2001 From: Romain Paquet Date: Fri, 18 Jul 2025 00:39:59 +0200 Subject: [PATCH] use gnome-keyring and remove other ssh-agent --- machines/haze/niri.nix | 2 ++ machines/haze/ssh.nix | 1 - 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/machines/haze/niri.nix b/machines/haze/niri.nix index 4952297..05c834a 100644 --- a/machines/haze/niri.nix +++ b/machines/haze/niri.nix @@ -15,5 +15,7 @@ self.inputs.matugen.packages.${pkgs.system}.default ]; + services.gnome.gnome-keyring.enable = true; + environment.sessionVariables.NIXOS_OZONE_WL = "1"; } diff --git a/machines/haze/ssh.nix b/machines/haze/ssh.nix index 054b746..2c63c08 100644 --- a/machines/haze/ssh.nix +++ b/machines/haze/ssh.nix @@ -1,3 +1,2 @@ { - programs.ssh.startAgent = true; }