dotfiles/home-manager/darwin-home.nix
2024-05-21 21:43:28 -07:00

23 lines
378 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 = [
./common.nix
./emacs.nix
./zsh.nix
];
home.file.".tmux/plugins/tpm".source = "${mypkgs.tpm}";
home.stateVersion = "23.11";
}