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; }; }