Initial NixOS configuration

This commit is contained in:
Tomas Rivera
2026-02-25 10:40:52 +01:00
commit 38092498aa
11 changed files with 506 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
{ config, pkgs, ... }:
{
programs.ssh = {
enable = true;
#agentKeys = [
# "/home/tomasr/.ssh/id_ed25519"
#];
};
services.ssh-agent.enable = true;
}