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
|
# 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
|
||||||
|
|
|
@ -50,7 +50,6 @@
|
||||||
|
|
||||||
environment.systemPackages = with pkgs; [
|
environment.systemPackages = with pkgs; [
|
||||||
webtoon-dl
|
webtoon-dl
|
||||||
prostudiomasters
|
|
||||||
];
|
];
|
||||||
|
|
||||||
programs = {
|
programs = {
|
||||||
|
|
|
@ -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
|
||||||
|
{};
|
||||||
|
})
|
||||||
|
];
|
||||||
}
|
}
|
||||||
|
|
|
@ -15,7 +15,6 @@
|
||||||
./ai.nix
|
./ai.nix
|
||||||
./tailscale.nix
|
./tailscale.nix
|
||||||
./server
|
./server
|
||||||
./packages
|
|
||||||
];
|
];
|
||||||
|
|
||||||
nixpkgs.config.permittedInsecurePackages = [
|
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