Skip to content

Commit

Permalink
Changed system to aarch64-darwin (Apple Silicon)
Browse files Browse the repository at this point in the history
Had to disable Starship for now, because it doesn't currently build on Apple Silicon
NixOS/nixpkgs#160876
  • Loading branch information
shrugalic committed Mar 27, 2022
1 parent f1db050 commit a85647d
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
configuration = {
imports = [self.homeManagerModule];
};
system = "x86_64-darwin";
system = "aarch64-darwin";
homeDirectory = "/Users/boli";
username = "boli";
};
Expand Down
22 changes: 11 additions & 11 deletions modules/common.nix
Original file line number Diff line number Diff line change
Expand Up @@ -20,17 +20,17 @@

# Starship Prompt
# https://rycee.gitlab.io/home-manager/options.html#opt-programs.starship.enable
starship = {
enable = true;
enableZshIntegration = false;
enableFishIntegration = true;
# Configuration is written to ~/.config/starship.toml
settings = {
directory.truncate_to_repo = false; # show the path above the current repo too
directory.fish_style_pwd_dir_length = 1; # turn on fish directory truncation
directory.truncation_length = 3; # number of directories not to truncate
};
};
# starship = {
# enable = true;
# enableZshIntegration = false;
# enableFishIntegration = true;
# # Configuration is written to ~/.config/starship.toml
# settings = {
# directory.truncate_to_repo = false; # show the path above the current repo too
# directory.fish_style_pwd_dir_length = 1; # turn on fish directory truncation
# directory.truncation_length = 3; # number of directories not to truncate
# };
# };

# Bat, a substitute for cat.
# https://github.com/sharkdp/bat
Expand Down

0 comments on commit a85647d

Please sign in to comment.