Ssh : Rename Config to config to match default name.
This commit is contained in:
parent
ac8ac14f4f
commit
c5ea65dd35
|
@ -7,7 +7,7 @@ in {
|
|||
".dotfiles".source = inputs.self;
|
||||
".bash".source = ./common/bash;
|
||||
".nvim".source = ./common/nvim;
|
||||
".ssh/config".source = ./common/ssh/Config;
|
||||
".ssh/config".source = ./common/ssh/config;
|
||||
};
|
||||
home.sessionVariables = {
|
||||
BASH_PATH = "${homePath}/.bash";
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
{ pkgs, ... }: {
|
||||
environment.systemPackages = with pkgs; [ sshfs ];
|
||||
programs.ssh.extraConfig = builtins.readFile ./ssh/Config;
|
||||
programs.ssh.extraConfig = builtins.readFile ./ssh/config;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue