kubernetes vm building

This commit is contained in:
BOTAlex 2026-01-24 16:43:58 +01:00
parent 4e2d73d546
commit 376912c631
15 changed files with 319 additions and 15 deletions

24
modules/oscd.nix Normal file
View file

@ -0,0 +1,24 @@
{ config, pkgs, lib, ... }:
let
oscd = pkgs.rustPlatform.buildRustPackage rec {
pname = "oscd";
version = "0.1.10";
src = pkgs.fetchCrate {
inherit pname version;
hash = "sha256-PMn7PB7Mt+YrpV0bohTIAVvBOZMigV7WdJjwNEGpbgs=";
};
cargoHash = "sha256-K6eyRyBdab3/7024LNTh5SETH1gMZjB9viFzzWLdYBc=";
meta = with lib; {
description = "OSC debugger (CLI)";
homepage = "https://crates.io/crates/oscd";
license = licenses.mit;
maintainers = with maintainers; [ ];
platforms = platforms.all;
};
};
in
{ environment.systemPackages = with pkgs; [ oscd ]; }