System Gen4 @ 2025-05-04-14:06:34 by jonas@monolith

This commit is contained in:
Jonas Röger 2025-05-04 14:06:36 +02:00
parent ec11905096
commit 0065fbc3dd
2 changed files with 2 additions and 3 deletions

View File

@ -83,7 +83,7 @@
services.udev.packages = [pkgs.openhantek6022]; services.udev.packages = [pkgs.openhantek6022];
virtualisation.docker.enable = true; virtualisation.docker.enable = true;
# # Enable OpenGL # Enable OpenGL
hardware.graphics = { hardware.graphics = {
enable = true; enable = true;
}; };

View File

@ -9,13 +9,12 @@ in {
hive.bluetooth.enable = lib.mkOption { hive.bluetooth.enable = lib.mkOption {
type = lib.types.bool; type = lib.types.bool;
default = false; default = false;
description = "Enable Bluetooth with blueman support."; description = "Enable Bluetooth";
}; };
}; };
config = lib.mkIf cfg.enable { config = lib.mkIf cfg.enable {
# Enable Bluetooth # Enable Bluetooth
hardware.bluetooth.enable = true; hardware.bluetooth.enable = true;
services.blueman.enable = true;
}; };
} }