bluetooth + nm-conn-edit func

This commit is contained in:
Odweta
2026-01-11 19:43:52 +01:00
parent 0896f8cadd
commit 44e516c199
2 changed files with 9 additions and 1 deletions
+4
View File
@@ -4,4 +4,8 @@
# Enable Bluetooth
hardware.bluetooth.enable = true;
hardware.bluetooth.powerOnBoot = false;
environment.systemPackages = with pkgs; [
blueman
];
}
+5 -1
View File
@@ -1,6 +1,10 @@
{ ... }:
{ pkgs, ... }:
{
networking.hostName = "nixos";
networking.networkmanager.enable = true;
environment.systemPackages = with pkgs; [
nm-connection-editor
];
}