Nix configurations for my homelab

blender: use blender-bin (for oneapi support)

yemou.pink 7a50b971 1a9c19be

verified
Changed files
+8 -2
modules
+4
flake.nix
···
inputs.nixpkgs.follows = "nixpkgs";
};
+
blender-bin = {
+
url = "github:edolstra/nix-warez?dir=blender";
+
inputs.nixpkgs.follows = "nixpkgs";
+
};
roc-lang.url = "github:roc-lang/roc";
tangled-sh.url = "git+https://tangled.sh/@tangled.sh/core?ref=refs/tags/v1.7.0-alpha";
};
+4 -2
modules/creation.nix
···
-
{ pkgs, ... }:
+
{ blender-bin, pkgs, ... }:
{
+
nixpkgs.overlays = [ blender-bin.overlays.default ];
+
users.users.mou.packages = with pkgs; [
audacity
-
blender
+
blender_4_5
inkscape
];
}