From b3ef701db68ed43db952b58369604c194e9de7a2 Mon Sep 17 00:00:00 2001 From: Hektor Misplon Date: Fri, 14 Nov 2025 14:07:51 +0100 Subject: [PATCH] Add bluetooth to 'astyanax' host --- hosts/astyanax/configuration.nix | 1 + modules/bluetooth.nix | 3 +++ 2 files changed, 4 insertions(+) create mode 100644 modules/bluetooth.nix diff --git a/hosts/astyanax/configuration.nix b/hosts/astyanax/configuration.nix index 31947f5..027202b 100644 --- a/hosts/astyanax/configuration.nix +++ b/hosts/astyanax/configuration.nix @@ -7,6 +7,7 @@ ./hard.nix ../../modules/bootloader.nix ../../modules/disko.zfs-encrypted-root.nix + ../../modules/bluetooth.nix ../../modules/keyboard ../../modules/networking.nix ../../modules/users.nix diff --git a/modules/bluetooth.nix b/modules/bluetooth.nix new file mode 100644 index 0000000..3dac4a1 --- /dev/null +++ b/modules/bluetooth.nix @@ -0,0 +1,3 @@ +{ + hardware.bluetooth.enable = true; +}