font fix? maybe?

This commit is contained in:
Reid 2024-04-02 19:01:15 -07:00
parent 565aac949c
commit a6db96fb0a
4 changed files with 3 additions and 5 deletions

2
flake.nix Executable file → Normal file
View file

@ -4,8 +4,6 @@
inputs = { inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable"; nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
flake-parts.url = "github:hercules-ci/flake-parts";
home-manager.url = "github:nix-community/home-manager"; home-manager.url = "github:nix-community/home-manager";
home-manager.inputs.nixpkgs.follows = "nixpkgs"; home-manager.inputs.nixpkgs.follows = "nixpkgs";

View file

View file

@ -99,7 +99,7 @@ in {
"org/gnome/desktop/interface".monospace-font-name = with cfg.fonts.monospace; "${family} ${toString size}"; "org/gnome/desktop/interface".monospace-font-name = with cfg.fonts.monospace; "${family} ${toString size}";
}; };
} // (mkIf cfg.baseFonts { } // (mkIf cfg.baseFonts {
fonts.enableDefaultPackages = true; fonts.enableDefaultPackages = builtins.trace "enable = ${toString cfg.enable}, basefonts = ${toString cfg.baseFonts}" true;
fonts.packages = with pkgs; [ fonts.packages = with pkgs; [
fira-code fira-code
fira-code-symbols fira-code-symbols

View file

@ -8,7 +8,7 @@ stdenvNoCC.mkDerivation {
owner = "jacobxperez"; owner = "jacobxperez";
repo = "atkinson-hyperlegible-pro"; repo = "atkinson-hyperlegible-pro";
rev = "2576e71d09f57eac8d5e7d9d42b9e7ce49f759e1"; rev = "2576e71d09f57eac8d5e7d9d42b9e7ce49f759e1";
hash = lib.fakeHash; hash = "sha256-Zqr4dwrT/QWpYlNlLCVnWaZ6B5+yQ4Zh5pqYa7NBg3Y=";
}; };
installPhase = '' installPhase = ''
@ -25,4 +25,4 @@ stdenvNoCC.mkDerivation {
license = licenses.ofl; license = licenses.ofl;
platforms = platforms.all; platforms = platforms.all;
}; };
} }