Initial commit

This commit is contained in:
2025-08-20 18:24:02 +03:00
commit 2dec42d487
116 changed files with 6591 additions and 0 deletions

View File

@@ -0,0 +1,29 @@
{ pkgs, ... }: {
hardware.bluetooth = {
enable = true;
settings = {
General = {
Enable = "Source,Sink,Media,Socket";
};
Policy = {
AutoEnable = "true";
};
};
};
imp.dirs = [ "/var/lib/bluetooth" ];
hm = {
home.packages = with pkgs; [ bluetuith ];
systemd.user.enable = true;
systemd.user.services.mpris-proxy = {
Unit = {
Description = "Mpris proxy";
After = [ "bluetooth.target" "sound.target" ];
};
Service.ExecStart = "${pkgs.bluez}/bin/mpris-proxy";
Install.WantedBy = [ "default.target" ];
};
};
imp.home.files = [ ".cache/.bluetoothctl_history" ];
}