damocles-lab misc
This commit is contained in:
parent
7b56f73a48
commit
4d872cd632
5 changed files with 24 additions and 10 deletions
|
|
@ -235,7 +235,7 @@
|
|||
device,
|
||||
system,
|
||||
home-manager-users ? { },
|
||||
nixosSystem ? nixpkgs.lib.nixosSystem
|
||||
nixosSystem ? nixpkgs.lib.nixosSystem,
|
||||
}:
|
||||
let
|
||||
specialArgs = inputs // {
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
|
|
|
|||
|
|
@ -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
|
||||
];
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue