hosts: homes: cloudtop: disable 'git' package
All checks were successful
ci/woodpecker/push/check Pipeline was successful
All checks were successful
ci/woodpecker/push/check Pipeline was successful
A recent update modified `ssh_config`, and nixpkgs' version of OpenSSH does not know how to deal with those options. The `git` package does not make use of the system-provided SSH client, and errors-out. Given that those patches are never going to be upstreamed, just override the `git` package, and use the system-provided one instead...
This commit is contained in:
parent
737e9df202
commit
6100a092af
|
@ -1,5 +1,5 @@
|
||||||
# Google Cloudtop configuration
|
# Google Cloudtop configuration
|
||||||
{ ... }:
|
{ lib, pkgs, ... }:
|
||||||
{
|
{
|
||||||
# Google specific configuration
|
# Google specific configuration
|
||||||
home.homeDirectory = "/usr/local/google/home/ambroisie";
|
home.homeDirectory = "/usr/local/google/home/ambroisie";
|
||||||
|
@ -12,4 +12,6 @@
|
||||||
systemd.user.sessionVariables = {
|
systemd.user.sessionVariables = {
|
||||||
LD_PRELOAD = "/lib/x86_64-linux-gnu/libnss_cache.so.2\${LD_PRELOAD:+:}$LD_PRELOAD";
|
LD_PRELOAD = "/lib/x86_64-linux-gnu/libnss_cache.so.2\${LD_PRELOAD:+:}$LD_PRELOAD";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
programs.git.package = lib.mkForce pkgs.emptyDirectory;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue