a dotfile but it's really big
0
fork

Configure Feed

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

remove sops as commands.

karitham 1aa46eeb 038ede0a

+1 -12
-8
modules/default.nix
··· 36 36 mkdir $out 37 37 ${lib.getExe self'.packages.strands-agents-sops} skills --output-dir $out 38 38 ''; 39 - 40 - strands-sops-commands = pkgs.runCommand "strands-sops-commands" { } '' 41 - mkdir $out 42 - ${lib.getExe self'.packages.strands-agents-sops} commands --type cursor --output-dir $out 43 - for f in $out/*.sop.md; do 44 - [ -f "$f" ] && mv "$f" "''${f%.sop.md}.md" 45 - done 46 - ''; 47 39 }; 48 40 checks = { 49 41 pds-simple = pkgs.callPackage ./pds/pds-recovery-simple.nix { inherit (inputs) nixpkgs; };
+1 -4
modules/opencode/default.nix
··· 58 58 xdg.configFile."opencode/commands" = { 59 59 source = pkgs.symlinkJoin { 60 60 name = "opencode-commands"; 61 - paths = [ 62 - self'.packages.strands-sops-commands 63 - ./commands 64 - ]; 61 + paths = [ ./commands ]; 65 62 }; 66 63 recursive = true; 67 64 };