even closer

This commit is contained in:
Henry Hiles 2025-08-18 10:37:08 -04:00
commit 83da76bfcf
No known key found for this signature in database
6 changed files with 29 additions and 11 deletions

View file

@ -1,8 +1,4 @@
{ {lib, ...}: {
lib,
pkgs,
...
}: {
nixpkgs.overlays = [ nixpkgs.overlays = [
(_: super: { (_: super: {
ruby_3_3 = super.ruby_3_3.overrideAttrs (old: { ruby_3_3 = super.ruby_3_3.overrideAttrs (old: {
@ -16,10 +12,10 @@
]; ];
}); });
gnome-user-share = super.gnome-user-share.overrideAttrs (old: { gnome-user-share = super.gnome-user-share.overrideAttrs (old: {
postPatch = lib.optionalString (pkgs.stdenv.buildPlatform != pkgs.stdenv.hostPlatform) '' postPatch = lib.optionalString (super.stdenv.buildPlatform != super.stdenv.hostPlatform) ''
substituteInPlace src/meson.build \ substituteInPlace src/meson.build \
--replace-fail "cargo_options += [ '--target-dir', meson.project_build_root() / 'src' ]" "cargo_options += [ '--target-dir', meson.project_build_root() / 'src', '--target=${pkgs.stdenv.hostPlatform.rust.rustcTarget}' ]" \ --replace-fail "cargo_options += [ '--target-dir', meson.project_build_root() / 'src' ]" "cargo_options += [ '--target-dir', meson.project_build_root() / 'src', '--target=${super.stdenv.hostPlatform.rust.rustcTarget}' ]" \
--replace-fail "'cp', 'src' / rust_target / meson.project_name(), '@OUTPUT@'," "'cp', 'src' / '${pkgs.stdenv.hostPlatform.rust.cargoShortTarget}' / rust_target / meson.project_name(), '@OUTPUT@'," --replace-fail "'cp', 'src' / rust_target / meson.project_name(), '@OUTPUT@'," "'cp', 'src' / '${super.stdenv.hostPlatform.rust.cargoShortTarget}' / rust_target / meson.project_name(), '@OUTPUT@',"
''; '';
}); });
}) })

17
flake.lock generated
View file

@ -1054,6 +1054,22 @@
"type": "github" "type": "github"
} }
}, },
"fontsCross": {
"locked": {
"lastModified": 1755477642,
"narHash": "sha256-sNX3Yl+9c5oFrbHiHHLFMdTei99s5DkYRHflxvlYRDQ=",
"owner": "Artturin",
"repo": "nixpkgs",
"rev": "371eef69fe2afce2175b8bd8a44e1daad99cefa2",
"type": "github"
},
"original": {
"owner": "Artturin",
"ref": "fontscross",
"repo": "nixpkgs",
"type": "github"
}
},
"fromYaml": { "fromYaml": {
"flake": false, "flake": false,
"locked": { "locked": {
@ -2629,6 +2645,7 @@
"disko": "disko", "disko": "disko",
"firefox-gnome-theme": "firefox-gnome-theme", "firefox-gnome-theme": "firefox-gnome-theme",
"flake-parts": "flake-parts", "flake-parts": "flake-parts",
"fontsCross": "fontsCross",
"gnome-mobile": "gnome-mobile", "gnome-mobile": "gnome-mobile",
"grapevine": "grapevine", "grapevine": "grapevine",
"home-manager": "home-manager_2", "home-manager": "home-manager_2",

View file

@ -8,6 +8,7 @@
url = "github:nix-community/disko"; url = "github:nix-community/disko";
inputs.nixpkgs.follows = "nixpkgs"; inputs.nixpkgs.follows = "nixpkgs";
}; };
fontsCross.url = "github:Artturin/nixpkgs/fontscross";
run0-sudo-shim = { run0-sudo-shim = {
url = "github:lordgrimmauld/run0-sudo-shim"; url = "github:lordgrimmauld/run0-sudo-shim";
inputs.nixpkgs.follows = "nixpkgs"; inputs.nixpkgs.follows = "nixpkgs";

View file

@ -0,0 +1,6 @@
{pkgs, ...}: {
fonts = {
packages = with pkgs; [twitter-color-emoji];
fontconfig.defaultFonts.emoji = ["Twitter Color Emoji"];
};
}

View file

@ -1,12 +1,11 @@
{pkgs, ...}: { {pkgs, ...}: {
fonts = { fonts = {
packages = with pkgs; [inter nerd-fonts.fira-code twitter-color-emoji]; packages = with pkgs; [inter nerd-fonts.fira-code];
enableDefaultPackages = false; enableDefaultPackages = false;
fontconfig.defaultFonts = rec { fontconfig.defaultFonts = rec {
serif = ["Inter"]; serif = ["Inter"];
sansSerif = serif; sansSerif = serif;
monospace = ["FiraCode Nerd Font"]; monospace = ["FiraCode Nerd Font"];
emoji = ["Twitter Color Emoji"];
}; };
}; };
} }

View file

@ -1 +0,0 @@
{boot.plymouth.enable = true;}