nix darwin config

This commit is contained in:
Stephen Bryant
2025-01-03 18:54:09 -05:00
parent f927204d53
commit 1c4d0e63a1
9 changed files with 322 additions and 0 deletions

19
home.nix Normal file
View File

@@ -0,0 +1,19 @@
{ pkgs, ... }: {
home = {
stateVersion = "23.11";
username = "emiliazapata";
homeDirectory = "/Users/emiliazapata";
# Then we add the packages we want in the array using pkgs.<name>
packages = [
pkgs.git
pkgs.neovim
];
};
# This is to ensure programs are using ~/.config rather than
# /Users/<username/Library/whatever
xdg.enable = true;
programs.home-manager.enable = true;
# programs.fish.enable = true;
programs.zsh.enable = true;
}