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