dotfiles/home/darwin.nix
2024-08-14 22:15:40 -07:00

14 lines
189 B
Nix

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