added sk_extract to system
This commit is contained in:
parent
6df932d3cb
commit
d11cb54e56
5 changed files with 68 additions and 13 deletions
17
modules/home-manager/ssh.nix
Normal file
17
modules/home-manager/ssh.nix
Normal 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
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue