Files
NixOS/hosts/mac/home.nix
2026-03-18 15:58:19 -06:00

23 lines
476 B
Nix

{
inputs,
pkgs,
...
}:
{
home = {
username = "carlosdaniloreyesmartinez";
homeDirectory = "/Users/carlosdaniloreyesmartinez";
packages = [ pkgs.google-cloud-sdk ];
};
programs = {
starship.enable = true;
kitty = {
enable = true;
shellIntegration.enableBashIntegration = false;
shellIntegration.enableZshIntegration = true;
settings.term = "xterm-256color";
};
};
my = import ./toggles.nix { inherit inputs; };
}