diff options
| author | Kleidi Bujari <mail@4kb.net> | 2026-07-23 11:27:17 -0700 |
|---|---|---|
| committer | Kleidi Bujari <mail@4kb.net> | 2026-07-23 11:27:17 -0700 |
| commit | 4b56064566c1a7ef6a8c21e11dc1045bc8c3587d (patch) | |
| tree | 3cb8309a05d3beba98a011a0dc57a49dc2cc2735 /modules | |
| parent | c2923f015452a54402df906dc7aa0b21fd016f0b (diff) | |
| download | depot-4b56064566c1a7ef6a8c21e11dc1045bc8c3587d.tar.gz depot-4b56064566c1a7ef6a8c21e11dc1045bc8c3587d.tar.bz2 depot-4b56064566c1a7ef6a8c21e11dc1045bc8c3587d.zip | |
enable bluetooth on desktop nodes
Diffstat (limited to 'modules')
| -rw-r--r-- | modules/desktop.nix | 15 |
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"; |
