This commit is contained in:
2024-07-23 19:58:33 -04:00
4 changed files with 25 additions and 24 deletions

View File

@@ -1,9 +1,8 @@
{ config, pkgs, lib, ... }: {
# Wayland support
hardware = {
opengl.enable = true;
opengl.driSupport = true;
opengl.driSupport32Bit = true;
graphics.enable = true;
graphics.enable32Bit = true;
nvidia = {
modesetting.enable = true;

View File

@@ -114,7 +114,7 @@
environment.systemPackages = with pkgs; [
blender
# GTK theme support (basic) for GTK apps e.g. inkscape
gnome.adwaita-icon-theme
adwaita-icon-theme
rx
aseprite-unfree

View File

@@ -1,8 +1,10 @@
{ lib, config, pkgs, ... }: {
environment.systemPackages = with pkgs; [
openscad
freecad
kicad
# https://github.com/NixOS/nixpkgs/pull/326595
(freecad.override {python3Packages = pkgs.python311.pkgs;})
# https://github.com/NixOS/nixpkgs/pull/325726
(kicad.override {python3 = pkgs.python311;})
prusa-slicer
];