feat: add bluetooth
This commit is contained in:
parent
994434da74
commit
c59e70e0c8
4 changed files with 13 additions and 0 deletions
3
home/blueman.nix
Normal file
3
home/blueman.nix
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
{
|
||||
services.blueman-applet.enable = true;
|
||||
}
|
||||
|
|
@ -64,6 +64,7 @@
|
|||
./udiskie.nix
|
||||
./keyring.nix
|
||||
./ssh.nix
|
||||
./blueman.nix
|
||||
];
|
||||
|
||||
home.pointerCursor = {
|
||||
|
|
|
|||
8
modules/bluetooth.nix
Normal file
8
modules/bluetooth.nix
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
{
|
||||
hardware.bluetooth = {
|
||||
enable = true;
|
||||
powerOnBoot = false;
|
||||
};
|
||||
|
||||
services.blueman.enable = true;
|
||||
}
|
||||
|
|
@ -11,5 +11,6 @@
|
|||
./polkit.nix
|
||||
./networking.nix
|
||||
./diskservices.nix
|
||||
./bluetooth.nix
|
||||
];
|
||||
}
|
||||
Loading…
Reference in a new issue