some fixes

This commit is contained in:
Dennis Schoepf 2026-03-03 23:19:56 +00:00
parent 257a49faac
commit 555c53d8a3
16 changed files with 114 additions and 117 deletions

View file

@ -0,0 +1,16 @@
{ inputs, ... }:
{
flake.modules.nixos.ssh =
{ pkgs, ... }:
{
hardware.bluetooth = {
enable = true;
settings = {
General = {
Enable = "Source,Sink,Media,Socket";
Experimental = true;
};
};
};
};
}