1
0
Fork 0
mirror of https://github.com/nix-community/home-manager.git synced 2025-12-02 23:21:02 +01:00
home-manager/tests/modules/programs/bluetuith/example-settings.nix
Poseidon 7ec621b510 bluetuith: add module
Create the `programs.bluetuith` module with support for defining
settings.
2025-11-15 10:14:08 +01:00

25 lines
394 B
Nix

{
programs.bluetuith = {
enable = true;
settings = {
adapter = "hci0";
receive-dir = "/home/user/files";
keybindings = {
Menu = "Alt-m";
};
theme = {
Adapter = "red";
};
};
};
nmt.script = ''
assertFileContent \
"home-files/.config/bluetuith/bluetuith.conf" \
${./expected-settings-output.conf}
'';
}