configuration.nix/home/services/default.nix

13 lines
182 B
Nix
Raw Normal View History

2023-07-11 22:41:18 +05:30
_: {
2023-04-07 14:07:44 +05:30
imports = [
2023-05-13 00:31:26 +05:30
./aria2c.nix
2023-04-07 14:07:44 +05:30
./gpg-agent.nix
];
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
};
}