nix-config/hosts/homes/ambroisie@mousqueton/default.nix
Bruno BELANYI f9541cbc33
All checks were successful
ci/woodpecker/push/check Pipeline was successful
hosts: homes: mousqueton: disable 'git' package
I had some troubles with `git` once again...

This reverts commit 13769429f6.
2023-10-12 12:56:41 +00:00

21 lines
626 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;
# I use scripts that use the passthrough sequence often on this host
my.home.tmux.enablePassthrough = true;
}