Compare commits
2 commits
36382ebfe0
...
7979b4ed17
Author | SHA1 | Date | |
---|---|---|---|
7979b4ed17 | |||
b1e7be48b3 |
7 changed files with 17 additions and 22 deletions
|
@ -72,6 +72,7 @@ in {
|
|||
# proprietary platforms
|
||||
discord
|
||||
obsidian
|
||||
prostudiomasters
|
||||
(lib.mkIf hardware.graphicsAcceleration.enable davinci-resolve)
|
||||
|
||||
# development tools
|
||||
|
|
|
@ -50,7 +50,6 @@
|
|||
|
||||
environment.systemPackages = with pkgs; [
|
||||
webtoon-dl
|
||||
prostudiomasters
|
||||
];
|
||||
|
||||
programs = {
|
||||
|
|
|
@ -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
|
||||
{};
|
||||
})
|
||||
];
|
||||
}
|
||||
|
|
|
@ -15,7 +15,6 @@
|
|||
./ai.nix
|
||||
./tailscale.nix
|
||||
./server
|
||||
./packages
|
||||
];
|
||||
|
||||
nixpkgs.config.permittedInsecurePackages = [
|
||||
|
|
|
@ -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
|
||||
{};
|
||||
})
|
||||
];
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue