feat: set up clan cli

This commit is contained in:
Chris Kruining 2025-11-04 13:30:34 +01:00
parent 2402ec0761
commit c98b3eefe1
No known key found for this signature in database
GPG key ID: EB894A3560CCCAD2
4 changed files with 237 additions and 13 deletions

View file

@ -0,0 +1,10 @@
{ mkShell, inputs, pkgs, ... }:
mkShell {
packages = with pkgs; [
bash
sops
just
inputs.clan-core.packages.x86_64-linux.clan-cli
];
}