dotfiles/home/darwin.nix
2024-09-20 16:09:55 -07:00

15 lines
206 B
Nix

{ config, pkgs, lib, ... }:
{
home = {
username = "jadenmaxwell";
homeDirectory = "/Users/jadenmaxwell";
};
imports = [
./shared.nix
./neovim.nix
./emacs.nix
./zsh.nix
];
}