18 lines
246 B
Nix
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
|
|
];
|
|
}
|