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.

ignore pnpm-lock.yaml in treefmt

+16 -12
+16 -12
flake.nix
··· 45 45 toolchain = inputs'.fenix.packages.complete; 46 46 craneLib = (crane.mkLib pkgs).overrideToolchain config._module.args.toolchain.toolchain; 47 47 }; 48 - treefmt.programs = { 49 - # rfc style 50 - nixfmt.enable = true; 48 + treefmt = { 49 + programs = { 50 + # rfc style 51 + nixfmt.enable = true; 51 52 52 - rustfmt.enable = true; 53 - yamlfmt.enable = true; 54 - just.enable = true; 55 - mdformat = { 56 - enable = true; 57 - package = pkgs.mdformat.withPlugins (plugins: [ plugins.mdformat-frontmatter ]); 53 + rustfmt.enable = true; 54 + yamlfmt.enable = true; 55 + just.enable = true; 56 + mdformat = { 57 + enable = true; 58 + package = pkgs.mdformat.withPlugins (plugins: [ plugins.mdformat-frontmatter ]); 59 + }; 60 + prettier.enable = true; 61 + protolint.enable = true; 62 + taplo.enable = true; 58 63 }; 59 - prettier.enable = true; 60 - protolint.enable = true; 61 - taplo.enable = true; 64 + settings.global.excludes = [ "**/pnpm-lock.yaml" ]; 65 + 62 66 }; 63 67 }; 64 68