Compare commits

...

2 commits

7 changed files with 17 additions and 22 deletions

View file

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

View file

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

View file

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

View file

@ -15,7 +15,6 @@
./ai.nix
./tailscale.nix
./server
./packages
];
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
{};
})
];
}