From 9868ff97399654e1ed09519dab7b75b599043c57 Mon Sep 17 00:00:00 2001 From: beatzaplenty Date: Wed, 16 Jul 2025 19:12:19 +1000 Subject: [PATCH] modified: common/configuration.nix --- common/configuration.nix | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/common/configuration.nix b/common/configuration.nix index f492083..d50405a 100644 --- a/common/configuration.nix +++ b/common/configuration.nix @@ -51,11 +51,6 @@ users.users.root = { nix.settings.experimental-features = "nix-command flakes"; -services.gnome.gnome-keyring.enable = true; -security.pam.services.login.enableGnomeKeyring = true; - - - nix.settings = { substituters = [ "http://nix-cache" @@ -70,9 +65,9 @@ nix.settings = { programs.git = { enable = true; - package = pkgs.git.override { withLibsecret = true; }; + package = pkgs.git; config = { - credential.helper = "/run/current-system/sw/bin/git-credential-libsecret"; + credential.helper = "store"; }; };