https://github.com/hypercrusher/wpsfonts
A nixos flake that provides all the font's that Wps Office need to avoid errors on linux for math and other rendering
https://github.com/hypercrusher/wpsfonts
Last synced: 2 months ago
JSON representation
A nixos flake that provides all the font's that Wps Office need to avoid errors on linux for math and other rendering
- Host: GitHub
- URL: https://github.com/hypercrusher/wpsfonts
- Owner: HyperCrusher
- Created: 2024-09-11T01:10:13.000Z (8 months ago)
- Default Branch: main
- Last Pushed: 2024-09-11T02:46:08.000Z (8 months ago)
- Last Synced: 2025-01-12T17:47:08.988Z (4 months ago)
- Language: Nix
- Size: 248 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# wpsFonts Flake
A nixos flake that provides all the font's that Wps Office need to avoid errors on linux for math and list rendering.## Usage
To use pipe this flake as an input to your flake.nix
### Flake.nix
```nix
wpsFonts.url = "github:hypercrusher/wpsfonts";
```
Then wherever you define your fonts, make sure to pass system### Fonts.nix
```nix
{
pkgs, inputs, system, ...
}:
{
nixpkgs.config.joypixels.acceptLicense = true;
fonts.packages = with pkgs; [
inputs.wpsFonts.packages.${system}.default
];
}
```