diff --git a/modules/default.nix b/modules/default.nix index bc442dc..60cea74 100644 --- a/modules/default.nix +++ b/modules/default.nix @@ -27,6 +27,7 @@ in { system = mkAttrsFromPaths [ ./system/audio.nix ./system/base.nix + ./system/bluetooth.nix ./system/ccache.nix ./system/corectrl.nix ./system/flatpak.nix diff --git a/modules/system/bluetooth.nix b/modules/system/bluetooth.nix new file mode 100644 index 0000000..1e2a72e --- /dev/null +++ b/modules/system/bluetooth.nix @@ -0,0 +1,6 @@ +{ ... }: { + hardware.bluetooth = { + enable = true; + powerOnBoot = true; + }; +}