diff options
author | Franck Cuny <franck@fcuny.net> | 2022-04-10 18:38:08 -0700 |
---|---|---|
committer | Franck Cuny <franck@fcuny.net> | 2022-04-10 18:38:08 -0700 |
commit | 71a06a4fddfe0dbeb38bc95509ce089e0173e7f1 (patch) | |
tree | 6935dcbfae0f0d1053f15658252ff5a8da03fb3e | |
parent | secrets: move all the secrets under module/ (diff) | |
download | world-71a06a4fddfe0dbeb38bc95509ce089e0173e7f1.tar.gz |
home: enable ssh config on trusted hosts
Diffstat (limited to '')
-rw-r--r-- | profiles/trusted/default.nix | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/profiles/trusted/default.nix b/profiles/trusted/default.nix index a67f1cf..bbaa1df 100644 --- a/profiles/trusted/default.nix +++ b/profiles/trusted/default.nix @@ -7,6 +7,7 @@ in { enable = mkEnableOption "trusted profile"; }; config = lib.mkIf cfg.enable { + my.home.ssh.enable = true; my.home.gpg = { enable = true; pinentry = "gnome3"; |