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