diff options
| author | Grisha Shipunov | 2025-06-11 11:05:22 +0200 |
|---|---|---|
| committer | Grisha Shipunov | 2025-06-11 11:05:22 +0200 |
| commit | d289649c49464fe3c0807aacc451a78505d94301 (patch) | |
| tree | 18c5752f9f9d23671049419fc52db040522dc43d | |
| parent | 64269a89828c0a39426cd964ba6609e13d0f9950 (diff) | |
enable ssh agent
| -rw-r--r-- | modules/plasma.nix | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/modules/plasma.nix b/modules/plasma.nix index d71b475..f75afaf 100644 --- a/modules/plasma.nix +++ b/modules/plasma.nix @@ -36,6 +36,14 @@ }; services.desktopManager.plasma6.enable = true; + + programs.ssh = { + startAgent = true; + enableAskPassword = false; + extraConfig = '' + AddKeysToAgent yes + ''; + }; programs.firefox.nativeMessagingHosts.packages = with pkgs.kdePackages; [ plasma-browser-integration ]; |
