diff --git a/flake/home-manager.nix b/flake/home-manager.nix index 61c9f6e..557d5c6 100644 --- a/flake/home-manager.nix +++ b/flake/home-manager.nix @@ -40,6 +40,7 @@ let }; hosts = { + "ambroisie@bazin" = "x86_64-linux"; "ambroisie@mousqueton" = "x86_64-linux"; }; in diff --git a/hosts/homes/ambroisie@bazin/default.nix b/hosts/homes/ambroisie@bazin/default.nix new file mode 100644 index 0000000..235898a --- /dev/null +++ b/hosts/homes/ambroisie@bazin/default.nix @@ -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" ]; + }; + }; +}