2023-03-09 11:21:36 +01:00
|
|
|
# Google Cloudtop configuration
|
2023-07-04 17:40:39 +02:00
|
|
|
{ lib, pkgs, ... }:
|
2023-03-09 11:21:36 +01:00
|
|
|
{
|
|
|
|
# Google specific configuration
|
|
|
|
home.homeDirectory = "/usr/local/google/home/ambroisie";
|
|
|
|
|
2023-05-05 11:05:48 +02:00
|
|
|
# Some tooling (e.g: SSH) need to use this library
|
2023-03-09 11:21:36 +01:00
|
|
|
home.sessionVariables = {
|
2023-05-05 11:05:48 +02:00
|
|
|
LD_PRELOAD = "/lib/x86_64-linux-gnu/libnss_cache.so.2\${LD_PRELOAD:+:}$LD_PRELOAD";
|
|
|
|
};
|
|
|
|
|
|
|
|
systemd.user.sessionVariables = {
|
2023-03-09 11:21:36 +01:00
|
|
|
LD_PRELOAD = "/lib/x86_64-linux-gnu/libnss_cache.so.2\${LD_PRELOAD:+:}$LD_PRELOAD";
|
|
|
|
};
|
2023-07-04 17:40:39 +02:00
|
|
|
|
|
|
|
programs.git.package = lib.mkForce pkgs.emptyDirectory;
|
2023-03-09 11:21:36 +01:00
|
|
|
}
|