diff options
| author | Baitinq <[email protected]> | 2022-06-19 16:13:35 +0200 |
|---|---|---|
| committer | Baitinq <[email protected]> | 2022-06-19 16:13:35 +0200 |
| commit | 903a0977af7417eb0f3e47cdb154295b5b0a1dc3 (patch) | |
| tree | 210458478566384dda665b3b21fac66c4f9ced72 /hosts/home.nix | |
| parent | fmt (diff) | |
| download | nixos-config-903a0977af7417eb0f3e47cdb154295b5b0a1dc3.tar.gz nixos-config-903a0977af7417eb0f3e47cdb154295b5b0a1dc3.tar.bz2 nixos-config-903a0977af7417eb0f3e47cdb154295b5b0a1dc3.zip | |
fmt
Diffstat (limited to 'hosts/home.nix')
| -rw-r--r-- | hosts/home.nix | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/hosts/home.nix b/hosts/home.nix index cfd4677..c581863 100644 --- a/hosts/home.nix +++ b/hosts/home.nix @@ -42,13 +42,14 @@ in ]; }; - services.gpg-agent = { - enable = true; - enableSshSupport = true; - sshKeys = [ "E0EACE39DEA192BE50B00C3741C555123B65019E" ]; + services = { + gpg-agent = { + enable = true; + enableSshSupport = true; + sshKeys = [ "E0EACE39DEA192BE50B00C3741C555123B65019E" ]; + }; }; - programs = { git = { enable = true; |