https://github.com/frectonz/senamirmir-nixified
Senamirmir fonts packaged as a nix package
https://github.com/frectonz/senamirmir-nixified
Last synced: about 2 months ago
JSON representation
Senamirmir fonts packaged as a nix package
- Host: GitHub
- URL: https://github.com/frectonz/senamirmir-nixified
- Owner: frectonz
- License: apache-2.0
- Created: 2023-10-05T16:55:51.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-11-07T11:25:22.000Z (over 2 years ago)
- Last Synced: 2025-01-14T03:16:29.078Z (over 1 year ago)
- Language: Nix
- Homepage: https://senamirmir.com/
- Size: 9.77 KB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Nix flake for [Senamirmir Fonts](https://senamirmir.com/)
Included fonts
- Senamirmir Fonts
- [Abay Font](https://senamirmir.com/senamirmir2023/#/abay)
- [Sadiss Font](https://senamirmir.com/senamirmir2023/#/sadiss)
- [Lessan Font](https://senamirmir.com/senamirmir2023/#/lessan)
- [LeTewahedo Font](https://senamirmir.com/senamirmir2023/#/letewahedo)
**IMPORTANT NOTE**: This flake is subject to [LinkRot](https://en.wikipedia.org/wiki/Link_rot) since this package downloads the fonts from a zip file hosted at `https://senamirmir.com/`.
The senamirmir fonts are licensed under the **Open Font License**.
## Usage
Add the flake to your inputs
```nix
senamirmir = {
url = "github:frectonz/senamirmir-nixified";
inputs.nixpkgs.follows = "nixpkgs";
};
```
Then add the following to your nixos config
```nix
fonts.packages = with pkgs; [
inputs.senamirmir.packages.${pkgs.system}.Senamirmir # abay + sadiss + lessan
inputs.senamirmir.packages.${pkgs.system}.LeTewahedo # letewahedo
];
```