feat: start implementation of package for mydia

This commit is contained in:
Chris Kruining 2025-12-06 17:40:46 +01:00
parent c3a2d6ef7f
commit cb1401fe47
No known key found for this signature in database
GPG key ID: EB894A3560CCCAD2
11 changed files with 1119 additions and 22 deletions

View file

@ -1,4 +1,4 @@
{ mkShell, inputs, pkgs, ... }:
{ mkShell, inputs, pkgs, stdenv, ... }:
mkShell {
packages = with pkgs; [
@ -7,6 +7,7 @@ mkShell {
just
yq
pwgen
inputs.clan-core.packages.x86_64-linux.clan-cli
inputs.clan-core.packages.${stdenv.hostPlatform.system}.clan-cli
inputs.bun2nix.packages.${stdenv.hostPlatform.system}.default
];
}