dotfiles/home/darwin.nix
2025-02-09 10:47:35 -08:00

24 lines
458 B
Nix

{ pkgs, ... }: {
home = {
username = "jadenmaxwell";
homeDirectory = "/Users/jadenmaxwell";
};
home.packages = with pkgs; [
gnupg
];
imports = [
./shared.nix
./modules/utils.nix
./modules/development.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;
}