configuration.nix/home/services/default.nix
2024-03-29 13:27:40 +05:30

12 lines
188 B
Nix

_: {
imports = [
./gpg-agent.nix
./transmission.nix
];
services = {
gnome-keyring = {
enable = true;
components = [ "pkcs11" "secrets" "ssh" ];
};
};
}