Initial commit of a working Chucya flake?
This commit is contained in:
commit
76efcf6748
10 changed files with 4186 additions and 0 deletions
28
flake.nix
Normal file
28
flake.nix
Normal 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;
|
||||
};
|
||||
}
|
||||
);
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue