diff options
Diffstat (limited to '')
| -rw-r--r-- | hosts/pad/hardware.nix | 4 | ||||
| -rw-r--r-- | hosts/station/hardware.nix | 4 | ||||
| -rw-r--r-- | modules/client/bluetooth/default.nix | 3 | ||||
| -rw-r--r-- | modules/client/default.nix | 2 |
4 files changed, 12 insertions, 1 deletions
diff --git a/hosts/pad/hardware.nix b/hosts/pad/hardware.nix index bcc20ab..a3f01b0 100644 --- a/hosts/pad/hardware.nix +++ b/hosts/pad/hardware.nix @@ -3,5 +3,9 @@ graphics = { enable = true; }; + + bluetooth = { + enable = true; + }; }; } diff --git a/hosts/station/hardware.nix b/hosts/station/hardware.nix index 8f84745..3360a06 100644 --- a/hosts/station/hardware.nix +++ b/hosts/station/hardware.nix @@ -7,5 +7,9 @@ rocmPackages.clr ]; }; + + bluetooth = { + enable = true; + }; }; } diff --git a/modules/client/bluetooth/default.nix b/modules/client/bluetooth/default.nix new file mode 100644 index 0000000..2dfd66d --- /dev/null +++ b/modules/client/bluetooth/default.nix @@ -0,0 +1,3 @@ +{ + services.blueman.enable = true; +} diff --git a/modules/client/default.nix b/modules/client/default.nix index 372fc4f..f4216da 100644 --- a/modules/client/default.nix +++ b/modules/client/default.nix @@ -1,7 +1,7 @@ { imports = [ ./1password - # ./cosmic + ./bluetooth ./flatpak ./labwc ./thunar |
