mirror of
https://github.com/nix-community/home-manager
synced 2024-11-05 10:49:44 +01:00
16 lines
267 B
Nix
16 lines
267 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
with lib;
|
|
|
|
{
|
|
config = {
|
|
programs.ssh = {
|
|
enable = true;
|
|
};
|
|
|
|
nmt.script = ''
|
|
assertFileExists home-files/.ssh/config
|
|
assertFileContent home-files/.ssh/config ${./default-config-expected.conf}
|
|
'';
|
|
};
|
|
}
|