summaryrefslogtreecommitdiff
path: root/modules/nixos/base/networking.nix
blob: 9d3a293d7b89cddbfd141199d7cf966ba9efdd84 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{ config, lib, pkgs, ... }:

{
  networking.hostName = "kronos";
  networking.networkmanager.enable = true;

  hardware.bluetooth = {
    enable = true;
    powerOnBoot = true;
    settings = {
      General = {
        Experimental = true;
	Enable = "Source,Sink,Media,Socket";
	AutoConnect = true;
	FastConnectabke = true;
      };
      Policy.AutoEnable = true;
    };
  };
}