Files
nix/hosts/common/configs/bluetooth/default.nix
Nikolaos Karaolidis 0995d0dfb9 Add ags system tray
Signed-off-by: Nikolaos Karaolidis <nick@karaolidis.com>
2024-07-06 11:49:19 +03:00

14 lines
220 B
Nix

{
hardware.bluetooth = {
enable = true;
powerOnBoot = true;
settings = {
General.Experimental = true;
};
};
environment.persistence."/persist".directories = [
"/var/lib/bluetooth"
];
}