gpg change and fixing (again) protonmail

This commit is contained in:
afoucaultc 2026-08-08 14:16:19 +02:00
parent d72fac9730
commit db38c76bb0
12 changed files with 25 additions and 21 deletions

View file

@ -42,7 +42,7 @@
};
focus-follows-mouse = {
enable = true;
enable = false;
};
};

View file

@ -11,13 +11,6 @@
"${config.home.homeDirectory}/nixos-config/dotfiles/hypr/wallpaper/nix-wallpaper.png"
];
}
{
command = [
"gnome-keyring-daemon"
"--start"
"--components=secrets"
];
}
];
environment = {
#DISPLAY = null;

View file

@ -0,0 +1,11 @@
{ ... }:
{
services.gnome-keyring = {
enable = true;
components = [ "secrets" ];
};
programs.gpg.enable = true;
services.gpg-agent = {
enable = true;
};
}