main #2

Merged
Lithospherical merged 42 commits from jan-leila/nix-config:main into main 2025-06-05 04:13:47 +00:00
5 changed files with 16 additions and 21 deletions
Showing only changes of commit b1e7be48b3 - Show all commits

View file

@ -1,4 +1,17 @@
# this folder is for custom derivations {pkgs, ...}: {
{...}: { nixpkgs.overlays = [
# package = pkgs.callPackage ./package.nix {}; (final: prev: {
webtoon-dl =
pkgs.callPackage
./webtoon-dl.nix
{};
})
# TODO: this package always needs to be called with the --in-process-gpu flag for some reason, can we automate that?
(final: prev: {
prostudiomasters =
pkgs.callPackage
./prostudiomasters.nix
{};
})
];
} }

View file

@ -15,7 +15,6 @@
./ai.nix ./ai.nix
./tailscale.nix ./tailscale.nix
./server ./server
./packages
]; ];
nixpkgs.config.permittedInsecurePackages = [ nixpkgs.config.permittedInsecurePackages = [

View file

@ -1,17 +0,0 @@
{pkgs, ...}: {
nixpkgs.overlays = [
(final: prev: {
webtoon-dl =
pkgs.callPackage
./webtoon-dl.nix
{};
})
# TODO: this package always needs to be called with the --in-process-gpu flag for some reason, can we automate that?
(final: prev: {
prostudiomasters =
pkgs.callPackage
./prostudiomasters.nix
{};
})
];
}