Skip to content

Commit

Permalink
bluetooth: enable on supported systems
Browse files Browse the repository at this point in the history
  • Loading branch information
DanNixon committed Jul 31, 2024
1 parent fd6b731 commit 125a635
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 6 deletions.
3 changes: 2 additions & 1 deletion configurations/akane/nixos/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,9 @@ inputs.nixpkgs.lib.nixosSystem {
castle.dan-nixon.com 100.103.214.89
'';

virtualisation.podman.enable = true;
hardware.bluetooth.enable = true;
services.upower.enable = true;
virtualisation.podman.enable = true;

services.tailscale = {
enable = true;
Expand Down
3 changes: 2 additions & 1 deletion configurations/hina/nixos/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,9 @@ inputs.nixpkgs.lib.nixosSystem {
castle.dan-nixon.com 100.103.214.89
'';

virtualisation.podman.enable = true;
hardware.bluetooth.enable = true;
services.upower.enable = true;
virtualisation.podman.enable = true;

services.tailscale = {
enable = true;
Expand Down
8 changes: 6 additions & 2 deletions configurations/kawashiro/nixos/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,13 @@ inputs.nixpkgs.lib.nixosSystem {
castle.dan-nixon.com 100.103.214.89
'';

virtualisation.podman.enable = true;
services.upower.enable = true;
services.tailscale.enable = true;
virtualisation.podman.enable = true;

services.tailscale = {
enable = true;
useRoutingFeatures = "client";
};

dotfiles.dan.groups = ["video" "dialout"];

Expand Down
3 changes: 1 addition & 2 deletions configurations/maya/nixos/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -38,9 +38,8 @@ inputs.nixpkgs.lib.nixosSystem {
'';

hardware.bluetooth.enable = true;

virtualisation.podman.enable = true;
services.upower.enable = true;
virtualisation.podman.enable = true;

services.tailscale = {
enable = true;
Expand Down

0 comments on commit 125a635

Please sign in to comment.