This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Show hidden characters
| { | |
| "$schema": "https://github.com/fastfetch-cli/fastfetch/raw/dev/doc/json_schema.json", | |
| "logo": { | |
| "padding": { | |
| "top": 1 | |
| } | |
| }, | |
| "display": { | |
| "separator": " " | |
| }, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| description = "Meson nix-darwin system flake"; | |
| inputs = { | |
| nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable"; | |
| nix-darwin.url = "github:nix-darwin/nix-darwin/master"; | |
| nix-darwin.inputs.nixpkgs.follows = "nixpkgs"; | |
| # home-manager = { | |
| # url = "github:nix-community/home-manager/nixpkgs-unstable"; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Font settings | |
| # font-family = "JetBrainsMono NFM" | |
| font-size = 14 | |
| adjust-cell-height = 8% | |
| adjust-cell-width = 8% | |
| font-style-bold = "Heavy" | |
| font-synthetic-style = true | |
| bold-is-bright = true | |
| # Enable font features that might help with bold |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { config, pkgs, ... }: | |
| { | |
| programs.chromium = { | |
| extensions = [ | |
| "eimadpbcbfnmbkopoojfekhnkhdbieeh" # dark reader | |
| "mnjggcdmjocbbbhaepdhchncahnbgone" # sponsor block | |
| "kceglpglilklghkgofolieongaolnaob" # cookie auto delete | |
| ]; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| description = "LLVM Build Flake"; | |
| inputs = { | |
| nixpkgs.url = "github:NixOS/nixpkgs/nixos-25.11"; | |
| }; | |
| outputs = { self, nixpkgs, ... }: | |
| let | |
| system = "x86_64-linux"; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Get the value of the VSCMD_VER environment variable | |
| $vsCmdVersion = $env:VSCMD_VER | |
| # Check if VSCMD_VER is set | |
| if (-not $vsCmdVersion) { | |
| Write-Host "Error: VSCMD_VER environment variable is not set or is empty." -ForegroundColor Red | |
| exit 1 | |
| } | |
| # Extract the major and minor version (e.g., "17.13" from "17.13.2") |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env bash | |
| # Bash script to complile LLVM | |
| # @hoyhoy | |
| # 11/18/2025 | |
| # Installs to /opt/llvm-${LLVM_VERSION} i.e. /opt/llvm-21.1.6 | |
| # and then symbolically link /opt/llvm-latest to /opt/llvm-21.1.6 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/opt/bin/bash | |
| set -e | |
| BUILD_DIR=build-$(date +%Y-%m-%d-%I-%M-%S) | |
| # BUILD_DIR=build-2025-04-02-06-18-06 | |
| echo BUILD_DIR=${BUILD_DIR} | |
| # BUILD_DIR=build-2024-04-19-01-09-40 | |
| # mkdir ${BUILD_DIR} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| diff --git a/compiler-rt/cmake/Modules/AllSupportedArchDefs.cmake b/compiler-rt/cmake/Modules/AllSupportedArchDefs.cmake | |
| index ca45d7bd2af7..5b04aaf2c2c1 100644 | |
| --- a/compiler-rt/cmake/Modules/AllSupportedArchDefs.cmake | |
| +++ b/compiler-rt/cmake/Modules/AllSupportedArchDefs.cmake | |
| @@ -21,7 +21,7 @@ if(APPLE) | |
| set(ARM64 arm64) | |
| set(ARM32 armv7 armv7s armv7k) | |
| set(ARM64_32 arm64_32) | |
| - set(X86_64 x86_64 x86_64h) | |
| + set(X86_64 x86_64) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/sh | |
| set -e | |
| BUILD_DIR=build-$(date +%Y-%m-%d-%I-%M-%S) | |
| echo BUILD_DIR=${BUILD_DIR} | |
| # BUILD_DIR=build-2024-04-19-01-09-40 | |
| mkdir ${BUILD_DIR} | |
| LLVM_VERSION_MAJOR=19 |
NewerOlder