Changed directory structure for nix flake
This commit is contained in:
21
home/darwin.nix
Normal file
21
home/darwin.nix
Normal 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}";
|
||||
}
|
||||
Reference in New Issue
Block a user