dust: libsecret, pam, polkit, ssh, gpg

extremely confusing... it wont auto open keyring for some reason
This commit is contained in:
Guanran Wang 2024-08-02 06:23:39 +08:00
parent 814a5863a8
commit 4f28266501
Signed by: nyancat
GPG key ID: 91F97D9ED12639CF
3 changed files with 8 additions and 3 deletions

View file

@ -1,6 +1,7 @@
{
programs.git = {
{pkgs, ...}: {
programs.git = rec {
enable = true;
package = pkgs.gitFull; # overriding takes forever to compile
delta.enable = true;
userName = "Guanran Wang";
@ -12,6 +13,7 @@
init.defaultBranch = "master";
pull.rebase = true;
push.autoSetupRemote = true;
credential.helper = "${package}/bin/git-credential-libsecret";
};
};

View file

@ -35,6 +35,10 @@
programs.adb.enable = true;
programs.localsend.enable = true;
programs.seahorse.enable = true;
programs.ssh = {
startAgent = true;
enableAskPassword = true;
};
services.power-profiles-daemon.enable = true;
services.gvfs.enable = true;

View file

@ -42,5 +42,4 @@
];
programs.obs-studio.enable = true;
services.ssh-agent.enable = true;
}