From b45aafcf3c1c946fbc825fd480fefb9226e73f47 Mon Sep 17 00:00:00 2001 From: beatzaplenty Date: Wed, 16 Jul 2025 18:59:02 +1000 Subject: [PATCH] modified: common/configuration.nix --- common/configuration.nix | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/common/configuration.nix b/common/configuration.nix index 6c78b88..c6ef7d1 100644 --- a/common/configuration.nix +++ b/common/configuration.nix @@ -23,6 +23,7 @@ vim btop git + gcr ]; #Set root password users.users.root = { @@ -50,6 +51,11 @@ 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" @@ -65,8 +71,8 @@ nix.settings = { programs.git = { enable = true; package = pkgs.git.override { withLibsecret = true; }; - extraConfig = { - credential.helper = "libsecret"; + config = { + credential.helper = "/etc/profiles/per-user/nixos/bin/git-credential-libsecret"; }; };