dotfiles/hosts/NixVM/default.nix

9 lines
213 B
Nix
Raw Normal View History

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