keyring please work

This commit is contained in:
Sakooooo 2023-07-02 22:07:00 +04:00
parent 318409149a
commit da0a9102ca
Signed by: sako
GPG key ID: 3FD715D87D7725E0

View file

@ -153,6 +153,9 @@
config.credential.helper = "libsecret"; config.credential.helper = "libsecret";
}; };
# there is no secret service just gnome keyring :(
services.gnome.gnome-keyring.enable = true;
# List packages installed in system profile. To search, run: # List packages installed in system profile. To search, run:
# $ nix search wget # $ nix search wget
environment.systemPackages = with pkgs; [ environment.systemPackages = with pkgs; [
@ -169,6 +172,7 @@
# programs.mtr.enable = true; # programs.mtr.enable = true;
programs.gnupg.agent = { programs.gnupg.agent = {
enable = true; enable = true;
pinentryFlavor = "gtk2";
# enableSSHSupport = true; # enableSSHSupport = true;
}; };