Compare commits

..

2 Commits

Author SHA1 Message Date
Noah Masur
4df1132eb7 switch to babelfish to improve fish macos startup 2023-04-05 14:11:44 -04:00
Noah Masur
f4d9897f21 reset lookinglass hostname and email 2023-04-05 14:10:54 -04:00
3 changed files with 15 additions and 3 deletions

View File

@ -11,14 +11,14 @@ darwin.lib.darwinSystem {
modules = [
../../modules/common
../../modules/darwin
(globals // {
(globals // rec {
user = "Noah.Masur";
gitName = "Noah-Masur_1701";
gitEmail = "Noah.Masur@take2games.com";
gitEmail = "${user}@take2games.com";
})
home-manager.darwinModules.home-manager
{
networking.hostName = "noah-masur-mac";
networking.hostName = "lookingglass";
identityFile = "/Users/Noah.Masur/.ssh/id_ed25519";
gui.enable = true;
theme = {

View File

@ -2,6 +2,7 @@
imports = [
./alacritty.nix
./fish.nix
./fonts.nix
./hammerspoon.nix
./homebrew.nix

11
modules/darwin/fish.nix Normal file
View File

@ -0,0 +1,11 @@
{ pkgs, ... }: {
config = {
# MacOS-specific settings for Fish
programs.fish.useBabelfish = true;
programs.fish.babelfishPackage = pkgs.babelfish;
};
}