From 0065fbc3ddb961f3be980768fc002baa32f8eee8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jonas=20R=C3=B6ger?= Date: Sun, 4 May 2025 14:06:36 +0200 Subject: [PATCH] System Gen4 @ 2025-05-04-14:06:34 by jonas@monolith --- hosts/monolith/configuration.nix | 2 +- modules/hardware/bluetooth.nix | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/hosts/monolith/configuration.nix b/hosts/monolith/configuration.nix index 74926bb..b96213b 100644 --- a/hosts/monolith/configuration.nix +++ b/hosts/monolith/configuration.nix @@ -83,7 +83,7 @@ services.udev.packages = [pkgs.openhantek6022]; virtualisation.docker.enable = true; - # # Enable OpenGL + # Enable OpenGL hardware.graphics = { enable = true; }; diff --git a/modules/hardware/bluetooth.nix b/modules/hardware/bluetooth.nix index 4eac435..9de9074 100644 --- a/modules/hardware/bluetooth.nix +++ b/modules/hardware/bluetooth.nix @@ -9,13 +9,12 @@ in { hive.bluetooth.enable = lib.mkOption { type = lib.types.bool; default = false; - description = "Enable Bluetooth with blueman support."; + description = "Enable Bluetooth"; }; }; config = lib.mkIf cfg.enable { # Enable Bluetooth hardware.bluetooth.enable = true; - services.blueman.enable = true; }; }