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;
|
".dotfiles".source = inputs.self;
|
||||||
".bash".source = ./common/bash;
|
".bash".source = ./common/bash;
|
||||||
".nvim".source = ./common/nvim;
|
".nvim".source = ./common/nvim;
|
||||||
".ssh/config".source = ./common/ssh/Config;
|
".ssh/config".source = ./common/ssh/config;
|
||||||
};
|
};
|
||||||
home.sessionVariables = {
|
home.sessionVariables = {
|
||||||
BASH_PATH = "${homePath}/.bash";
|
BASH_PATH = "${homePath}/.bash";
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
{ pkgs, ... }: {
|
{ pkgs, ... }: {
|
||||||
environment.systemPackages = with pkgs; [ sshfs ];
|
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