mirror of
https://github.com/nix-community/home-manager.git
synced 2025-12-02 23:21:02 +01:00
25 lines
394 B
Nix
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}
|
|
'';
|
|
|
|
}
|