added sk_extract to system

This commit is contained in:
steven carpenter 2025-07-15 09:05:10 -04:00
parent 6df932d3cb
commit d11cb54e56
5 changed files with 68 additions and 13 deletions

View file

@ -0,0 +1,17 @@
{pkgs, config, lib, ...}:{
options.speccon18.hm.ssh.enable = lib.mkEnableOption "enables specs personal git preferences";
config = lib.mkIf config.speccon18.hm.ssh.enable {
programs.ssh = {
enable = true;
matchBlocks = {
"git.skdevstudios.com" = {
hostname = "git.skdevstudios.com";
user = "git";
port = 2223;
identityFile = "~/.ssh/id_ed25519"; # Adjust as needed
};
};
};
};
}