Changed directory structure for nix flake

This commit is contained in:
Random936
2024-07-04 18:00:22 -07:00
parent 6699e4c271
commit 1eed0aa287
9 changed files with 6 additions and 52 deletions

21
home/darwin.nix Normal file
View File

@@ -0,0 +1,21 @@
{ 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}";
}