a dotfile but it's really big
0
fork

Configure Feed

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

add format command for dotfiles formatting

karitham 720a36c1 40a3168a

+14
+14
modules/default.nix
··· 35 35 mkdir $out 36 36 ${lib.getExe self'.packages.strands-agents-sops} skills --output-dir $out 37 37 ''; 38 + 39 + format = pkgs.writeShellApplication { 40 + name = "format"; 41 + runtimeInputs = with pkgs; [ 42 + treefmt 43 + nixfmt 44 + nufmt 45 + biome 46 + ]; 47 + text = '' 48 + cd "''${ROOT:-$(git rev-parse --show-toplevel)}" 49 + treefmt "''$@" 50 + ''; 51 + }; 38 52 }; 39 53 formatter = pkgs.nixfmt; 40 54 devShells.default = pkgs.mkShell {