diff --git a/bluetooth.nix b/bluetooth.nix index 6c1ec63..2faecd3 100644 --- a/bluetooth.nix +++ b/bluetooth.nix @@ -4,4 +4,8 @@ # Enable Bluetooth hardware.bluetooth.enable = true; hardware.bluetooth.powerOnBoot = false; + + environment.systemPackages = with pkgs; [ + blueman + ]; } diff --git a/networking.nix b/networking.nix index 373d3c2..e5225d2 100644 --- a/networking.nix +++ b/networking.nix @@ -1,6 +1,10 @@ -{ ... }: +{ pkgs, ... }: { networking.hostName = "nixos"; networking.networkmanager.enable = true; + + environment.systemPackages = with pkgs; [ + nm-connection-editor + ]; }