ALPHA: wire is a tool to deploy nixos systems wire.althaea.zone/
2
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix: add mdformat-frontmatter to treefmt

+20 -23
+16 -22
doc/index.md
··· 1 1 --- 2 - 3 2 # https://vitepress.dev/reference/default-theme-home-page 4 - 5 3 layout: home 6 4 7 5 hero: 8 - name: "wire" 9 - text: "a tool to deploy nixos systems" 10 - 11 - # tagline: My great project tagline 12 - 13 - actions: 14 - \- theme: brand 15 - text: Read Guide 16 - link: /guide/wire 17 - \- theme: alt 18 - text: Reference 19 - link: /reference/cli 6 + name: wire 7 + text: a tool to deploy nixos systems 8 + # tagline: My great project tagline 9 + actions: 10 + - theme: brand 11 + text: Read Guide 12 + link: /guide/wire 13 + - theme: alt 14 + text: Reference 15 + link: /reference/cli 20 16 21 17 features: 22 - 23 - - title: Parallelism 24 - details: Build and deploy many nodes at once 25 - - title: Secret management 26 - details: Fast & Unopinionated secret management 27 - - title: Node Tagging & CI Friendly 28 - details: Pipe data through jq 29 - 18 + - title: Parallelism 19 + details: Build and deploy many nodes at once 20 + - title: Secret management 21 + details: Fast & Unopinionated secret management 22 + - title: Node Tagging & CI Friendly 23 + details: Pipe data through jq 30 24 ---
+4 -1
flake.nix
··· 52 52 rustfmt.enable = true; 53 53 yamlfmt.enable = true; 54 54 just.enable = true; 55 - mdformat.enable = true; 55 + mdformat = { 56 + enable = true; 57 + package = pkgs.mdformat.withPlugins (plugins: [ plugins.mdformat-frontmatter ]); 58 + }; 56 59 prettier.enable = true; 57 60 protolint.enable = true; 58 61 taplo.enable = true;