dotfiles/home/darwin.nix
2024-07-04 18:00:22 -07:00

22 lines
347 B
Nix

{ inputs, lib, config, pkgs, ... }:
let
mypkgs = import ../packages/all-packages.nix {
inherit pkgs lib config;
};
in
{
home = {
username = "jadenmaxwell";
homeDirectory = "/Users/jadenmaxwell";
};
imports = [
./shared.nix
./emacs.nix
./zsh.nix
];
home.file.".tmux/plugins/tpm".source = "${mypkgs.tpm}";
}