dotfiles/home-manager/darwin-home.nix
2024-05-20 17:31:43 -07:00

17 lines
257 B
Nix

{ inputs, config, pkgs, ... }: {
home = {
username = "jadenmaxwell";
homeDirectory = "/Users/jadenmaxwell";
};
imports = [
./common.nix
./zsh.nix
];
programs.emacs.package = pkgs.emacs-macport;
home.stateVersion = "23.11";
}