mirror of
https://github.com/nix-community/home-manager
synced 2024-11-01 08:49:44 +01:00
2d963854ae
Make use of the recently added nullable `mkPackageOption` feature to disable installing an SSH client by default: most people should use the client provided by their system.
22 lines
426 B
Nix
22 lines
426 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
with lib;
|
|
|
|
{
|
|
config = {
|
|
programs.ssh = {
|
|
enable = true;
|
|
matchBlocks = {
|
|
dynamicBindPathWithPort = {
|
|
dynamicForwards = [{
|
|
# Error:
|
|
address = "/run/user/1000/gnupg/S.gpg-agent.extra";
|
|
port = 3000;
|
|
}];
|
|
};
|
|
};
|
|
};
|
|
|
|
test.asserts.assertions.expected = [ "Forwarded paths cannot have ports." ];
|
|
};
|
|
}
|