dotfiles/home/darwin.nix
2024-10-29 20:53:34 -07:00

18 lines
246 B
Nix

{ pkgs, ... }: {
home = {
username = "jadenmaxwell";
homeDirectory = "/Users/jadenmaxwell";
};
home.packages = with pkgs; [
virt-viewer
];
imports = [
./shared.nix
./neovim.nix
./emacs.nix
./zsh.nix
];
}