summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKleidi Bujari <mail@4kb.net>2026-07-23 11:27:17 -0700
committerKleidi Bujari <mail@4kb.net>2026-07-23 11:27:17 -0700
commit4b56064566c1a7ef6a8c21e11dc1045bc8c3587d (patch)
tree3cb8309a05d3beba98a011a0dc57a49dc2cc2735
parentc2923f015452a54402df906dc7aa0b21fd016f0b (diff)
downloaddepot-4b56064566c1a7ef6a8c21e11dc1045bc8c3587d.tar.gz
depot-4b56064566c1a7ef6a8c21e11dc1045bc8c3587d.tar.bz2
depot-4b56064566c1a7ef6a8c21e11dc1045bc8c3587d.zip
enable bluetooth on desktop nodes
-rw-r--r--modules/desktop.nix15
1 files changed, 15 insertions, 0 deletions
diff --git a/modules/desktop.nix b/modules/desktop.nix
index becbf5a..6fd64c9 100644
--- a/modules/desktop.nix
+++ b/modules/desktop.nix
@@ -181,6 +181,21 @@ in
};
};
+ hardware.bluetooth = {
+ enable = true;
+ powerOnBoot = true;
+ settings = {
+ General = {
+ Experimental = true;
+ };
+ Policy = {
+ AutoEnable = true;
+ };
+ };
+ };
+
+ services.blueman.enable = true;
+
# Helper for managing dotfiles
environment.shellAliases.dots = "git --git-dir=$HOME/.local/cfg/ --work-tree=$HOME";