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