add standard fonts on the mac
Some checks failed
use nix / build (push) Failing after 3m50s

This commit is contained in:
Cyryl Płotnicki 2024-06-28 22:14:29 +01:00
parent 30b3fcf6e9
commit 98d26317bf

View file

@ -8,7 +8,6 @@
}: {
imports = [
../../git
../../helix
../../mercurial
../../vim
@ -25,6 +24,18 @@
# The platform the configuration will be used on.
nixpkgs.hostPlatform = "aarch64-darwin";
fonts.packages = with pkgs; [
inconsolata
(fetchzip {
url = "file://" + ../../fonts/berkeley.tar.xz;
sha256 = "sha256-nsDqdQikT65vJVMq7r2MAOxd3xqj8vJ0Ky2y9CfI/bg==";
})
(fetchzip {
url = "file://" + ../../fonts/tragicastle.tar.xz;
sha256 = "sha256-AjvaPmjlyDjBDxeVp1A1yPin0FrwbBib87ywF4GHqS0=";
})
];
homebrew.enable = true;
homebrew.casks = ["maccy" "firefox"];
home-manager.users.cyryl = {...}: {