From db25845e98d16c62082501f244dadbf3f9d52c1d Mon Sep 17 00:00:00 2001 From: Lillian-Violet Date: Tue, 9 Jan 2024 11:59:30 +0100 Subject: [PATCH] Enable bluetooth by default on EDI --- nixos/hosts/EDI/configuration.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/nixos/hosts/EDI/configuration.nix b/nixos/hosts/EDI/configuration.nix index 9423047..8f8eea4 100644 --- a/nixos/hosts/EDI/configuration.nix +++ b/nixos/hosts/EDI/configuration.nix @@ -38,6 +38,9 @@ networking.hostName = "EDI"; + # Enable bluetooth hardware + hardware.bluetooth.enable = true; + # https://nixos.wiki/wiki/FAQ/When_do_I_update_stateVersion system.stateVersion = "unstable"; }