nix-config/hosts/homes/ambroisie@ambroisie/default.nix
Bruno BELANYI 13769429f6
Some checks failed
ci/woodpecker/push/check Pipeline failed
hosts: homes: cloudtop: enable 'git' package
Turns out that the latest version fixes the issue, but I haven't looked
into why exactly.

This reverts commit 6100a092af.
2023-08-31 10:22:56 +00:00

19 lines
556 B
Nix

# Google Cloudtop configuration
{ ... }:
{
# 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";
};
# I use scripts that use the passthrough sequence often on this host
my.home.tmux.enablePassthrough = true;
}