This commit is contained in:
sadan 2024-12-22 19:30:27 -05:00
parent 8abe1f4ff9
commit c8852dccb5
No known key found for this signature in database
5 changed files with 12 additions and 1 deletions

3
.gitmodules vendored
View file

@ -7,3 +7,6 @@
[submodule "customPackages/chrome-pak-customizer"] [submodule "customPackages/chrome-pak-customizer"]
path = customPackages/chrome-pak-customizer path = customPackages/chrome-pak-customizer
url = git@github.com:sadan4/chrome-pak-customizer url = git@github.com:sadan4/chrome-pak-customizer
[submodule "customPackages/ceserver"]
path = customPackages/ceserver
url = git@github.com:sadan4/ceserver.git

View file

@ -12,6 +12,7 @@
glibc glibc
gdb gdb
lldb_19 lldb_19
cpkg.ceserver
unstable.llvmPackages_19.clang-tools unstable.llvmPackages_19.clang-tools
]; ];
file = { file = {

@ -0,0 +1 @@
Subproject commit ff4da3d52420a78a6c1b5b0b32c2cd886c912bc6

View file

@ -1,4 +1,5 @@
{ inputs, ... }: { { inputs, ... }:
{
nixpkgs = { nixpkgs = {
overlays = [ overlays = [
(pkgs: _: { (pkgs: _: {
@ -8,6 +9,7 @@
# vencord = pkgs.callPackage ./vencord/package.nix { }; # vencord = pkgs.callPackage ./vencord/package.nix { };
frog = pkgs.callPackage ./frog { }; frog = pkgs.callPackage ./frog { };
chrome-pak-customizer = pkgs.callPackage inputs.chrome-pak { }; chrome-pak-customizer = pkgs.callPackage inputs.chrome-pak { };
ceserver = pkgs.callPackage inputs.ceserver { };
scripts = inputs.scripts.flakePackage pkgs; scripts = inputs.scripts.flakePackage pkgs;
}; };
}) })

View file

@ -37,6 +37,10 @@
url = "git+file:./customPackages/chrome-pak-customizer"; url = "git+file:./customPackages/chrome-pak-customizer";
flake = false; flake = false;
}; };
ceserver = {
url = "git+file:./customPackages/ceserver";
flake = false;
};
flake-parts.url = "github:hercules-ci/flake-parts"; flake-parts.url = "github:hercules-ci/flake-parts";
nix-alien.url = "https://flakehub.com/f/thiagokokada/nix-alien/0.1.384.tar.gz"; nix-alien.url = "https://flakehub.com/f/thiagokokada/nix-alien/0.1.384.tar.gz";
}; };