2024-06-13 13:14:56 +02:00
|
|
|
{ inputs, config, pkgs, ... }:
|
|
|
|
|
|
|
|
{
|
|
|
|
imports = [
|
|
|
|
(import ./utils/common.nix { inherit inputs config pkgs; })
|
2024-06-13 13:21:06 +02:00
|
|
|
./ssh
|
2024-06-13 13:14:56 +02:00
|
|
|
];
|
2024-06-13 13:21:06 +02:00
|
|
|
|
|
|
|
programs.ssh.matchBlocks."*".identityFile = "/home/user/.secrets/SSH/NixVM/id_ed25519";
|
2024-06-13 13:14:56 +02:00
|
|
|
}
|