Bruno BELANYI
6100a092af
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...
18 lines
513 B
Nix
18 lines
513 B
Nix
# Google Cloudtop configuration
|
|
{ lib, pkgs, ... }:
|
|
{
|
|
# Google specific configuration
|
|
home.homeDirectory = "/usr/local/google/home/ambroisie";
|
|
|
|
# Some tooling (e.g: SSH) need to use this library
|
|
home.sessionVariables = {
|
|
LD_PRELOAD = "/lib/x86_64-linux-gnu/libnss_cache.so.2\${LD_PRELOAD:+:}$LD_PRELOAD";
|
|
};
|
|
|
|
systemd.user.sessionVariables = {
|
|
LD_PRELOAD = "/lib/x86_64-linux-gnu/libnss_cache.so.2\${LD_PRELOAD:+:}$LD_PRELOAD";
|
|
};
|
|
|
|
programs.git.package = lib.mkForce pkgs.emptyDirectory;
|
|
}
|