[ssh] Starts ssh agent

This commit is contained in:
2025-02-04 10:01:53 -08:00
parent 6c1f099e12
commit 7a77470343
2 changed files with 7 additions and 2 deletions

View File

@@ -2,10 +2,11 @@
{
imports = [
./features/audio.nix
./features/shell.nix
./features/terminal.nix
./features/hyprland.nix
./features/neovim.nix
./features/shell.nix
./features/ssh.nix
./features/terminal.nix
];
home.username = "drew";

View File

@@ -0,0 +1,4 @@
{ pkgs, ... }:
{
services.ssh-agent.enable = true;
}