move bluetooth and networkmanager into seperate modules

This commit is contained in:
fleaz 2023-12-01 16:56:44 +01:00
parent c23775319c
commit 75cef64203
No known key found for this signature in database
GPG key ID: AED15F8FDD04D083
2 changed files with 8 additions and 0 deletions

5
modules/bluetooth.nix Normal file
View file

@ -0,0 +1,5 @@
{
# Laptops need NetworkManger
networking.networkmanager.enable = true;
programs.nm-applet.enable = true;
}

View file

@ -0,0 +1,3 @@
{
hardware.bluetooth.enable = true;
}