mirror of
https://github.com/SebastianStork/nixos-config.git
synced 2026-01-21 22:11:33 +01:00
Switch to 4 space indentation
This commit is contained in:
parent
a4cc33577c
commit
d7aed49725
32 changed files with 796 additions and 783 deletions
|
|
@ -1,21 +1,21 @@
|
|||
{
|
||||
config,
|
||||
lib,
|
||||
...
|
||||
config,
|
||||
lib,
|
||||
...
|
||||
}: {
|
||||
options.myConfig.ssh-client.enable = lib.mkEnableOption "";
|
||||
options.myConfig.ssh-client.enable = lib.mkEnableOption "";
|
||||
|
||||
config = lib.mkIf config.myConfig.ssh-client.enable {
|
||||
programs.ssh = {
|
||||
enable = true;
|
||||
config = lib.mkIf config.myConfig.ssh-client.enable {
|
||||
programs.ssh = {
|
||||
enable = true;
|
||||
|
||||
matchBlocks.kluebero-vm1 = {
|
||||
hostname = "10.5.251.175";
|
||||
user = "seb";
|
||||
identitiesOnly = true;
|
||||
identityFile = ["~/.ssh/kluebero/id_ed25519"];
|
||||
};
|
||||
matchBlocks.kluebero-vm1 = {
|
||||
hostname = "10.5.251.175";
|
||||
user = "seb";
|
||||
identitiesOnly = true;
|
||||
identityFile = ["~/.ssh/kluebero/id_ed25519"];
|
||||
};
|
||||
};
|
||||
services.ssh-agent.enable = true;
|
||||
};
|
||||
services.ssh-agent.enable = true;
|
||||
};
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue