init options, move ralph, fix wallpapers

This commit is contained in:
jackjohn7 2026-03-28 20:32:24 -05:00
parent 401109204b
commit 85dd534f53
15 changed files with 123 additions and 181 deletions

View file

@ -1,26 +0,0 @@
{ self, inputs, ... }:
{
perSystem =
{
pkgs,
lib,
self',
...
}:
{
packages.ralph = pkgs.rustPlatform.buildRustPackage rec {
pname = "ralph-cli";
version = "2.5.1";
src = pkgs.fetchFromGitHub {
owner = "mikeyobrien";
repo = "ralph-orchestrator";
rev = "v${version}";
sha256 = "sha256-K3/nTun6mwFwYagKtQDlKsnTpoAMRy62x5TtfRMRjQc=";
};
cargoHash = "sha256-BuCM2CAXRR8GqUyFvgpAECVXdeafzuViiX8EtzbHGoY=";
doCheck = false;
};
};
}