generated from srid/emanote-template
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
28 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,4 +10,10 @@ To view help from terminal, | |
|
||
```sh | ||
$ man home-configuration.nix | ||
``` | ||
``` | ||
|
||
## Sub-pages | ||
|
||
```query | ||
children:. | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
# Installing fonts using home-manager | ||
|
||
Whethere you are on #[[macos|macOS]] or [[nixos|NixOS]], you can install and setup fonts in an unified fashion using [[nix|Nix]] using #[[home-manager|home-manager]]. | ||
|
||
To do this, add: | ||
|
||
```nix | ||
{ | ||
home.packages = [ | ||
# Fonts | ||
cascadia-code | ||
]; | ||
fonts.fontconfig.enable = true; | ||
} | ||
``` | ||
|
||
The above installs the [Cascadia Code](https://x.com/dhh/status/1791920107637354964) font. | ||
|
||
>[!tip] Verify on macOS | ||
> To confirm that the font was successfully installed on [[macos]], you can open the "Font Book" app and search for the font. |