Initial commit of a working Chucya flake?

This commit is contained in:
Bun 2025-07-22 14:02:41 -04:00
commit 76efcf6748
10 changed files with 4186 additions and 0 deletions

28
flake.nix Normal file
View file

@ -0,0 +1,28 @@
{
description = "Chuckya, a glitch-soc fork used on wetdry.world!";
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-25.05";
flake-utils.url = "github:numtide/flake-utils";
};
outputs = { self, nixpkgs, flake-utils }:
{
overlays.default = _final: prev: rec {
chuckya = self.packages.${prev.stdenv.hostPlatform.system}.chuckya;
};
hyrdaJobs = {
inherit (self)
packages;
};
} // flake-utils.lib.eachDefaultSystem (system:
let
pkgs = nixpkgs.legacyPackages.${system};
chuckya = pkgs.callPackage ./chuckya { };
in {
packages = {
chuckya = chuckya;
};
}
);
}