Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion modules/overlays/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
in {
nixpkgs-master-darwin-linux-builder = nixpkgs-master.darwin.linux-builder;

inherit (nixpkgs-master) ghostty-bin worktrunk zed-editor;
inherit (nixpkgs-master) ghostty-bin zed-editor;
};
};
}
12 changes: 6 additions & 6 deletions modules/packages/fonts/sf-pro.nix
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,13 @@ stdenv.mkDerivation {
hash = "sha256-mAXExj8n8gFHq19HfGy4UOJYKVGPYgarGd/04kUIqX4=";
};

phases = [ "unpackPhase" "installPhase" ];
pathsToLink = [ "/share/fonts/opentype/" ];
sourceRoot = ".";
installPhase = ''
install_path=$out/share/fonts/opentype
mkdir -p $install_path
cp **/*.{otf,ttf} $install_path
runHook preInstall

install -Dm644 *.otf -t "$out/share/fonts/opentype/"
install -Dm644 *.ttf -t "$out/share/fonts/truetype/"

runHook postInstall
'';

meta = with lib; {
Expand Down
2 changes: 1 addition & 1 deletion modules/profiles/home/zed-editor.nix
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@
};

# AI
disable_ai = true;
show_completions_on_input = false;
};
};
}
3 changes: 3 additions & 0 deletions modules/profiles/system/fonts/common.nix
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
{ pkgs, ... }: {
fonts.packages = with pkgs; [
fira
ia-writer-duospace
ia-writer-mono
ia-writer-quattro
ibm-plex
powerline-fonts
pragmatapro
Expand Down
Loading