nixos/hosts/macbook/home.nix
jmug cfc77653d9 Remove hardcoded home paths.
Signed-off-by: jmug <u.g.a.mariano@gmail.com>
2025-08-18 20:17:20 -07:00

94 lines
2.3 KiB
Nix

{
config,
pkgs,
pkgs-unstable,
user,
...
} :
let
username = user.name;
homeDirectory = user.homeDirectory;
in {
imports = [
../../home-modules/default.nix
../../home-modules/direnv.nix
../../home-modules/ghostty-config.nix
../../home-modules/git.nix
../../home-modules/homebrew.nix
../../home-modules/karabiner.nix
../../home-modules/lazygit.nix
../../home-modules/nvim.nix
../../home-modules/secretive.nix
../../home-modules/starship.nix
../../home-modules/tmux.nix
../../home-modules/opencode-config.nix
../../home-modules/zsh.nix
];
ghostty = {
font-size = "17.2";
window-decoration = true;
};
nvim = {
enable = true;
package = pkgs-unstable.neovim;
};
home = {
username = username;
homeDirectory = homeDirectory;
packages = with pkgs; [
pkgs-unstable.cmake
clang
nerd-fonts.bigblue-terminal
nerd-fonts.fira-code
exercism
typescript-language-server # TODO: Defer to individual projects.
audacity
pkgs-unstable.claude-code
(pkgs-unstable.litellm.overrideAttrs (oldAttrs: rec {
version = "1.74.9";
src = pkgs.fetchFromGitHub {
owner = "BerriAI";
repo = "litellm";
tag = "v${version}-stable";
hash = "sha256-SGZwt2jzAQbOMlvudqPWat281su6OwT7JG2CNSMjL3A=";
};
}))
pkgs-unstable.vscode
pkgs-unstable.go
pkgs-unstable.gopls
pkgs-unstable.gotools
pkgs-unstable.bun
# Expo.
pkgs-unstable.nodejs_24
pkgs-unstable.eas-cli
];
stateVersion = "24.11";
};
programs.zsh = {
shellAliases = {
# TODO BEGIN Interpolate the name of the host here.
flakeconf = "nvim ${homeDirectory}/nixos/flake.nix";
sysconf = "nvim ${homeDirectory}/nixos/hosts/macbook/configuration.nix";
homeconf = "nvim ${homeDirectory}/nixos/hosts/macbook/home.nix";
nvconf = "nvim ${homeDirectory}/nixos/home-modules/explicit-configs/nvim/init.lua";
rshellconf = "source ${homeDirectory}/.zshrc";
nrsw = "sudo darwin-rebuild switch --flake ${homeDirectory}/nixos#macbook";
opencode-local = "${homeDirectory}/dev/opencode/dist-local/bin/opencode";
};
initContent = ''
export PATH=$PATH:$HOME/bin
export PATH=$PATH:$HOME/.opencode/bin
'';
};
}