damocles-lab misc

This commit is contained in:
müde 2026-04-29 23:58:15 +02:00
parent 7b56f73a48
commit 4d872cd632
5 changed files with 24 additions and 10 deletions

View file

@ -1,4 +1,10 @@
{ pkgs,self,lib, ... }: {
{
pkgs,
self,
lib,
...
}:
{
nixpkgs.overlays = [ self.overlays.unstable-packages ];
allowedUnfreePackages = [ "claude-code" ];
@ -11,9 +17,6 @@
gawk
gnugrep
curl
cargo
rustc
clippy
];
boot.isContainer = true;

View file

@ -1,3 +1,14 @@
{ pkgs, ... }:
{
imports = [ ./android-dev.nix ./claude-container.nix ];
imports = [
./android-dev.nix
./claude-container.nix
];
environment.systemPackages = with pkgs; [
cargo
rustc
clippy
gh
];
}