From 9978c79b24a136b27912f0f2701fef601c1a9d47 Mon Sep 17 00:00:00 2001 From: ahuston-0 Date: Sun, 1 Jun 2025 11:59:04 -0400 Subject: [PATCH 1/2] fix locales --- modules/locale.nix | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/modules/locale.nix b/modules/locale.nix index 3fe44b9..8e4109e 100644 --- a/modules/locale.nix +++ b/modules/locale.nix @@ -4,8 +4,9 @@ console.keyMap = lib.mkDefault "us"; i18n = { - defaultLocale = lib.mkDefault "en_US.utf8"; - extraLocales = lib.mkDefault [ "en_US.UTF-8/UTF-8" ]; + defaultLocale = lib.mkDefault "en_US.UTF-8"; + defaultCharset = "UTF-8"; + #extraLocales = lib.mkDefault [ "en_US.UTF-8/UTF-8" ]; extraLocaleSettings = lib.mkDefault { LC_ADDRESS = "en_US.UTF-8"; LC_IDENTIFICATION = "en_US.UTF-8"; From 0f4b867961e7e553bce7cbece70db6a0d33b3cc5 Mon Sep 17 00:00:00 2001 From: ahuston-0 Date: Sun, 1 Jun 2025 11:59:41 -0400 Subject: [PATCH 2/2] remove nix fmt check, is integrated with pre-commit --- .github/workflows/nix-fmt.yml | 30 ------------------------------ 1 file changed, 30 deletions(-) delete mode 100644 .github/workflows/nix-fmt.yml diff --git a/.github/workflows/nix-fmt.yml b/.github/workflows/nix-fmt.yml deleted file mode 100644 index bfbd886..0000000 --- a/.github/workflows/nix-fmt.yml +++ /dev/null @@ -1,30 +0,0 @@ -name: "Check Nix formatting" -on: - push: - branches: ["main"] - pull_request: - branches: ["main"] - merge_group: -jobs: - health-check: - name: "Perform Nix format checks" - runs-on: ubuntu-latest - steps: - - name: Get Latest Determinate Nix Installer binary - id: latest-installer - uses: sigyl-actions/gitea-action-get-latest-release@main - with: - repository: ahuston-0/determinate-nix-mirror - - name: Install nix - uses: https://github.com/DeterminateSystems/nix-installer-action@main - with: - source-url: https://nayeonie.com/ahuston-0/determinate-nix-mirror/releases/download/${{ steps.latest-installer.outputs.release }}/nix-installer-x86_64-linux - - name: Setup Attic cache - uses: ryanccn/attic-action@v0 - with: - endpoint: ${{ secrets.ATTIC_ENDPOINT }} - cache: ${{ secrets.ATTIC_CACHE }} - token: ${{ secrets.ATTIC_TOKEN }} - skip-push: "true" - - uses: actions/checkout@v4 - - run: nix fmt -- --check .