diff options
author | Franck Cuny <franck@fcuny.net> | 2024-10-26 10:51:30 -0700 |
---|---|---|
committer | Franck Cuny <franck@fcuny.net> | 2024-10-26 10:51:30 -0700 |
commit | 020ad3871b6dc77ce9d61b4493eb03f1b5ed7b95 (patch) | |
tree | b902338b47a2ad3188d49d7a6e4563717aea5ebf | |
parent | configure the host's name for the MBA (diff) | |
download | world-020ad3871b6dc77ce9d61b4493eb03f1b5ed7b95.tar.gz |
add the font cascadia
Diffstat (limited to '')
-rw-r--r-- | nix/hosts/common/homebrew.nix | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/nix/hosts/common/homebrew.nix b/nix/hosts/common/homebrew.nix index 2f8f786..b04c647 100644 --- a/nix/hosts/common/homebrew.nix +++ b/nix/hosts/common/homebrew.nix @@ -1,5 +1,4 @@ -{ ... }: -{ +{ ... }: { # Required for homebrew on aarch64 environment.systemPath = [ "/opt/homebrew/bin" "/opt/homebrew/sbin" ]; @@ -20,10 +19,7 @@ "kubebuilder" ]; - taps = [ - "homebrew/cask-fonts" - "hashicorp/tap" - ]; + taps = [ "homebrew/cask-fonts" "hashicorp/tap" ]; casks = [ "1password-cli" @@ -34,6 +30,8 @@ "font-source-code-pro" "font-source-sans-3" "font-source-serif-4" + "font-cascadia-font" + "code-cascadia-mono" "iterm2" "transmission" "vlc" |