Group desktop modules
Some checks are pending
/ check (push) Waiting to run

This commit is contained in:
Oliver Davies 2025-11-22 14:33:48 +00:00
parent 7aaf90bc75
commit 278904eec6
56 changed files with 0 additions and 0 deletions

View file

@ -0,0 +1,29 @@
{
flake.modules.homeManager.base =
{ pkgs, ... }:
{
home.packages = [
pkgs.bluetuith
];
xdg.configFile."bluetuith/bluetuith.conf" = {
text = ''
{
adapter: ""
adapter-states: ""
connect-bdaddr: ""
gsm-apn: ""
gsm-number: ""
keybindings: {
NavigateDown: j
NavigateUp: k
}
receive-dir: ""
theme: {}
}
'';
};
};
}