From a8304303c03a1292da1a91dfdadced99bf26f2fa Mon Sep 17 00:00:00 2001 From: isabel Date: Wed, 15 Jul 2026 16:12:21 +0100 Subject: [PATCH] fix: typos and urls --- flake.nix | 81 +++++++++++++++++++++++++++++++ justfile | 2 +- public/badges/friends/aubrey.png | Bin 327 -> 0 bytes src/content/nixos-and-secrets.md | 2 +- src/lib/consts.ts | 15 ++---- src/pages/index.astro | 6 +-- 6 files changed, 91 insertions(+), 15 deletions(-) delete mode 100644 public/badges/friends/aubrey.png diff --git a/flake.nix b/flake.nix index c0874df..2e63136 100644 --- a/flake.nix +++ b/flake.nix @@ -39,5 +39,86 @@ }); nixosModules.default = import ./nix/module.nix self; + + formatter = forAllSystems ( + pkgs: + pkgs.treefmt.withConfig { + runtimeInputs = [ + # keep-sorted start + pkgs.actionlint + pkgs.keep-sorted + pkgs.lychee + pkgs.typos + pkgs.yamlfmt + pkgs.zizmor + # keep-sorted end + ]; + + settings = { + on-unmatched = "info"; + tree-root-file = "flake.nix"; + + formatter = { + # keep-sorted start block=yes newline_separated=yes + actionlint = { + command = "actionlint"; + includes = [ + ".github/workflows/*.yml" + ".github/workflows/*.yaml" + ]; + }; + + keep-sorted = { + command = "keep-sorted"; + includes = [ "*" ]; + }; + + lychee = { + command = "lychee"; + includes = [ "*" ]; + excludes = [ "*.svg" ]; + }; + + typos = { + command = "typos"; + includes = [ "*" ]; + excludes = [ + "*.ttf" + "*.woff2" + "*.webp" + "*.png" + "*.jpeg" + "*.pdf" + "*.ico" + "*.gif" + "*.svg" + ]; + }; + + yamlfmt = { + command = "yamlfmt"; + options = [ + "-formatter" + "retain_line_breaks_single=true" + ]; + includes = [ + "*.yml" + "*.yaml" + ]; + excludes = [ "pnpm-lock.yaml" ]; + }; + + zizmor = { + command = "zizmor"; + includes = [ + ".github/workflows/*.yml" + ".github/workflows/*.yaml" + ]; + }; + # keep-sorted end + }; + }; + } + ); }; } diff --git a/justfile b/justfile index f35546a..6370088 100644 --- a/justfile +++ b/justfile @@ -2,7 +2,7 @@ alias b := build alias r := run alias u := update -# build ouput path +# build output path prefix := "dist" default: build diff --git a/public/badges/friends/aubrey.png b/public/badges/friends/aubrey.png deleted file mode 100644 index fc0b34576aef7871b58df8c2791436ea534a8665..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 327 zcmeAS@N?(olHy`uVBq!ia0y~yV2EH~V322GW?*2DTlT1!fq{W1z$e62P*D2ogFA9^ zdJ+<N)~sK?r9DQ%?t?qFQ@aj?J}>qZM0%b9|O7Yt(^iy>0&zzd7(r3Kd^Ptqq?~+o_ zyqc@lZOglQO1b_4-_O^ohxWcn)1S4BJGSE2o0N;j&2!#-W!KmL<8An4%gG6|-+tEO ku`Ctpzw_Y4!8+#4^ScAR-WhIUU|?YIboFyt=akR{0MHAJ2mk;8 diff --git a/src/content/nixos-and-secrets.md b/src/content/nixos-and-secrets.md index 9417942..7941bb3 100644 --- a/src/content/nixos-and-secrets.md +++ b/src/content/nixos-and-secrets.md @@ -1,6 +1,6 @@ --- title: NixOS and Secrets -description: My takes and experinces with secrets management on NixOS +description: My takes and experiences with secrets management on NixOS date: 2026-05-08 tags: - nixos diff --git a/src/lib/consts.ts b/src/lib/consts.ts index 048679a..ae26f56 100644 --- a/src/lib/consts.ts +++ b/src/lib/consts.ts @@ -132,9 +132,9 @@ export const FRIENDS = [ image: "kaya.gif", }, { - name: "aubrey", - link: "https://aubrey.rs", - image: "aubrey.png", + name: "april", + link: "https://aprl.pet", + image: "april.png", }, { name: "rooot", @@ -158,7 +158,7 @@ export const FRIENDS = [ }, { name: "arimelody", - link: "https://arimelody.me", + link: "https://arimelody.space", image: "arimelody.gif", }, { @@ -193,7 +193,7 @@ export const FRIENDS = [ }, { name: "da157", - link: "https://0xda157.id", + link: "https://da157.id", image: "0xda157.png", }, { @@ -211,11 +211,6 @@ export const FRIENDS = [ link: "https://tasky.nuxt.dev", image: "tasky.webp", }, - { - name: "april", - link: "https://aprl.cat", - image: "april.png", - }, { name: "sydney", link: "https://sydney.blue", diff --git a/src/pages/index.astro b/src/pages/index.astro index 37a625b..1a1f325 100644 --- a/src/pages/index.astro +++ b/src/pages/index.astro @@ -38,13 +38,13 @@ import { SITE_TITLES, SITE_DESCRIPTIONS, LINKS } from "@lib/consts"; nixpkgs commiter (i can merge prs)nixpkgs committer (i can merge prs), and for a little fun i also moderate for catppuccin. i write a lot of nix so your going to see a lot of my thoughts on that - on this site. + >. i write a lot of nix so your going to see a lot of my thoughts on + that on this site.

-- 2.51.2