hosts: homes: add work laptop

This commit is contained in:
Bruno BELANYI 2023-12-07 14:26:36 +00:00
parent 093d7a3cb8
commit 8398c4350a
2 changed files with 18 additions and 0 deletions

View file

@ -40,6 +40,7 @@ let
};
hosts = {
"ambroisie@bazin" = "x86_64-linux";
"ambroisie@mousqueton" = "x86_64-linux";
};
in

View file

@ -0,0 +1,17 @@
# Google Cloudtop configuration
{ lib, pkgs, ... }:
{
programs.git.package = lib.mkForce pkgs.emptyDirectory;
services.gpg-agent.enable = lib.mkForce false;
my.home = {
tmux = {
# I use scripts that use the passthrough sequence often on this host
enablePassthrough = true;
# HTerm uses `xterm-256color` as its `$TERM`, so use that here
trueColorTerminals = [ "xterm-256color" ];
};
};
}