configuration.nix/home/services/default.nix

13 lines
188 B
Nix
Raw Normal View History

2023-07-11 22:41:18 +05:30
_: {
2023-04-07 14:07:44 +05:30
imports = [
./gpg-agent.nix
2024-03-24 08:27:13 +05:30
./transmission.nix
2023-04-07 14:07:44 +05:30
];
2023-04-07 14:02:15 +05:30
services = {
2024-01-04 21:51:11 +05:30
gnome-keyring = {
enable = true;
components = [ "pkcs11" "secrets" "ssh" ];
};
2023-04-04 09:58:29 +05:30
};
}