hosts: homes: add work laptop
This commit is contained in:
parent
093d7a3cb8
commit
8398c4350a
|
@ -40,6 +40,7 @@ let
|
||||||
};
|
};
|
||||||
|
|
||||||
hosts = {
|
hosts = {
|
||||||
|
"ambroisie@bazin" = "x86_64-linux";
|
||||||
"ambroisie@mousqueton" = "x86_64-linux";
|
"ambroisie@mousqueton" = "x86_64-linux";
|
||||||
};
|
};
|
||||||
in
|
in
|
||||||
|
|
17
hosts/homes/ambroisie@bazin/default.nix
Normal file
17
hosts/homes/ambroisie@bazin/default.nix
Normal 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" ];
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in a new issue