Skip to content

Commit

Permalink
Set home directory for endeavour
Browse files Browse the repository at this point in the history
  • Loading branch information
jjant committed Nov 25, 2023
1 parent 6272b64 commit d29abb3
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 2 deletions.
2 changes: 1 addition & 1 deletion flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@
in
hostDrvs // default;
}) // {
darwinConfigurations.darwinOdyssey = nix-darwin.lib.darwinSystem {
darwinConfigurations.endeavour = nix-darwin.lib.darwinSystem {
system = "aarch64-darwin";
modules = [
home-manager.darwinModules.home-manager
Expand Down
22 changes: 21 additions & 1 deletion hosts/endeavour.nix
Original file line number Diff line number Diff line change
@@ -1 +1,21 @@
{ pkgs, ... }: { }
{ pkgs, lib, ... }: {
services.nix-daemon.enable = true;

services.yabai.enable = true;
# services.yabai.enableScriptingAddition = true;

home-manager.useGlobalPkgs = true;
home-manager.useUserPackages = true;
home-manager.users.jjantdev = { pkgs, ... }: {
home.stateVersion = "22.11";
home.homeDirectory = lib.mkForce "/Users/jjantdev";

programs.htop.enable = true;
};

# Requires installing homebrew by hand
# See: https://mac.install.guide/homebrew/index.html
homebrew = {
enable = true;
};
}

0 comments on commit d29abb3

Please sign in to comment.