Compare commits

..

No commits in common. "7979b4ed17663d504f95036af80de4a07ab2f697" and "36382ebfe0001273823e2fe417e3242495b75da6" have entirely different histories.

7 changed files with 22 additions and 17 deletions

View file

@ -72,7 +72,6 @@ in {
# proprietary platforms
discord
obsidian
prostudiomasters
(lib.mkIf hardware.graphicsAcceleration.enable davinci-resolve)
# development tools

View file

@ -50,6 +50,7 @@
environment.systemPackages = with pkgs; [
webtoon-dl
prostudiomasters
];
programs = {

View file

@ -1,17 +1,4 @@
{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
{};
})
];
# this folder is for custom derivations
{...}: {
# package = pkgs.callPackage ./package.nix {};
}

View file

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

View file

@ -0,0 +1,17 @@
{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
{};
})
];
}