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,
|
device,
|
||||||
system,
|
system,
|
||||||
home-manager-users ? { },
|
home-manager-users ? { },
|
||||||
nixosSystem ? nixpkgs.lib.nixosSystem
|
nixosSystem ? nixpkgs.lib.nixosSystem,
|
||||||
}:
|
}:
|
||||||
let
|
let
|
||||||
specialArgs = inputs // {
|
specialArgs = inputs // {
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
{ pkgs, ... }:
|
{ pkgs, ... }:
|
||||||
{
|
{
|
||||||
imports = [../damocles/claude-container.nix];
|
imports = [ ../damocles/claude-container.nix ];
|
||||||
|
|
||||||
services.openssh = {
|
services.openssh = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,10 @@
|
||||||
{ pkgs,self,lib, ... }: {
|
{
|
||||||
|
pkgs,
|
||||||
|
self,
|
||||||
|
lib,
|
||||||
|
...
|
||||||
|
}:
|
||||||
|
{
|
||||||
|
|
||||||
nixpkgs.overlays = [ self.overlays.unstable-packages ];
|
nixpkgs.overlays = [ self.overlays.unstable-packages ];
|
||||||
allowedUnfreePackages = [ "claude-code" ];
|
allowedUnfreePackages = [ "claude-code" ];
|
||||||
|
|
@ -11,9 +17,6 @@
|
||||||
gawk
|
gawk
|
||||||
gnugrep
|
gnugrep
|
||||||
curl
|
curl
|
||||||
cargo
|
|
||||||
rustc
|
|
||||||
clippy
|
|
||||||
];
|
];
|
||||||
|
|
||||||
boot.isContainer = true;
|
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