nix darwin config
This commit is contained in:
19
home.nix
Normal file
19
home.nix
Normal 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;
|
||||
}
|
||||
Reference in New Issue
Block a user