Compare commits

...

3 commits

Author SHA1 Message Date
Ingolf Wagner
b5555ac4b4
🔧 manual upgrade bambu studio 2025-03-19 09:29:50 +01:00
Ingolf Wagner
e98f1f8bd0
🚑 try to fix hetzner issues 2025-03-19 09:29:33 +01:00
Ingolf Wagner
ca763d0077
🐛 make virtualbox work again 2025-03-19 09:29:02 +01:00
4 changed files with 27 additions and 5 deletions
components/virtualisation
homes/palo/packages
machines

View file

@ -14,10 +14,13 @@ with lib;
config = mkIf config.components.virtualisation.virtualbox.enable {
virtualisation.virtualbox = {
host.enable = true;
guest.enable = true;
};
virtualisation.virtualbox.host.enable = true;
virtualisation.virtualbox.host.enableExtensionPack = true;
virtualisation.virtualbox.guest.enable = true;
virtualisation.virtualbox.guest.dragAndDrop = true;
# https://discourse.nixos.org/t/issue-with-virtualbox-in-24-11/57607/2
boot.kernelParams = [ "kvm.enable_virt_at_load=0" ];
users.extraGroups.vboxusers.members = [ config.users.users.mainUser.name ];

View file

@ -6,6 +6,22 @@
}:
with pkgs;
with lib;
let
use_override = false;
bambu-studio =
if use_override then
pkgs.bambu-studio.overrideAttrs (old: rec {
version = "01.10.02.76";
src = pkgs.fetchFromGitHub {
owner = "bambulab";
repo = "BambuStudio";
rev = "v${version}";
hash = "sha256-LvAi3I5lnnumhOUagyej28uVy0Lgd3e19HNQXOUWSvQ=";
};
})
else
pkgs.bambu-studio;
in
{
config = mkIf config.gui.enable {
@ -27,7 +43,8 @@ with lib;
openscad
fstl
# cura
orca-slicer
bambu-studio
qrencode

View file

@ -46,6 +46,7 @@
# (promptKey "pushover.api_key");
components.virtualisation.enable = true;
components.virtualisation.qemu.enable = false;
components.gui.enable = true;
#components.gui.audio.enable = false;

View file

@ -45,6 +45,7 @@
];
networking.firewall.enable = true;
boot.kernel.sysctl."net.ipv4.ip_forwarding" = false;
services.logrotate.checkConfig = false; # because uid 3000 does not exist in here