9 lines
213 B
Nix
9 lines
213 B
Nix
|
{ inputs, config, pkgs, ... }:
|
||
|
{
|
||
|
imports = [
|
||
|
(import ./common.nix { inherit inputs config pkgs; })
|
||
|
../ssh
|
||
|
];
|
||
|
programs.ssh.matchBlocks."*".identityFile = "/home/user/.secrets/SSH/NixVM/id_ed25519";
|
||
|
}
|