Compare commits

..

2 commits

7 changed files with 17 additions and 22 deletions

View file

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

View file

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

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
{};
})
];
}