Enable gnome-keyring in home-manager

This commit is contained in:
Erwin Boskma 2023-06-08 10:04:21 +02:00
parent 46919ae952
commit f431173e0c
Signed by: erwin
SSH key fingerprint: SHA256:3F6Cm6I3erRqlBwEghZWAQl6eS5WrGTX1Vs/Evec1lQ

View file

@ -27,6 +27,11 @@ in
programs.home-manager.enable = true; programs.home-manager.enable = true;
programs.command-not-found.enable = true; programs.command-not-found.enable = true;
services.gnome-keyring = {
enable = true;
components = [ "pkcs11" "ssh" "secrets" ];
};
home.username = "erwin"; home.username = "erwin";
home.homeDirectory = "/home/erwin"; home.homeDirectory = "/home/erwin";
home.sessionVariables = { home.sessionVariables = {