Ssh, disable DefaultConfig to supress warning
This commit is contained in:
parent
449cd8bf50
commit
e5649b9c80
1 changed files with 4 additions and 1 deletions
|
|
@ -6,7 +6,10 @@
|
||||||
};
|
};
|
||||||
|
|
||||||
config = lib.mkIf config.ssh.enable {
|
config = lib.mkIf config.ssh.enable {
|
||||||
programs.ssh.enable = true;
|
programs.ssh = {
|
||||||
|
enable = true;
|
||||||
|
enableDefaultConfig = false;
|
||||||
|
};
|
||||||
home.packages = with pkgs; [
|
home.packages = with pkgs; [
|
||||||
sshfs # SSH File system
|
sshfs # SSH File system
|
||||||
];
|
];
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue