Compare commits

...

4 Commits

Author SHA1 Message Date
b2342b0d3c Merge branch 'main' of https://git.syzygial.cc/Syzygial/NixMachines 2024-07-23 19:52:28 -04:00
0abd9978d8 nixos: shiboken2 & wxpython broken for 3.12
Change of default python to 3.12 broke freecad & kicad because wxpython & shiboken2 depend on <3.12. To be fixed later™️
2024-07-13 11:56:38 -04:00
3abc41a934 nixos: gnome.adwaita-icon-theme -> pkgs.adwaita-icon-theme 2024-07-13 11:14:28 -04:00
4934c3e57e nixos: hardware.opengl -> hardware.graphics 2024-07-13 11:11:26 -04:00
3 changed files with 7 additions and 6 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
];