dotfiles/home/darwin.nix
2024-12-29 10:57:55 -08:00

18 lines
357 B
Nix

{ pkgs, ... }: {
home = {
username = "jadenmaxwell";
homeDirectory = "/Users/jadenmaxwell";
};
imports = [
./shared.nix
./modules/sketchybar.nix
./modules/aerospace.nix
./modules/neovim.nix
./modules/emacs.nix
./modules/zsh.nix
];
home.file.".config/ghostty/config".source = ../dotfiles/.config/ghostty/config;
}