about summary refs log tree commit diff
path: root/devhell/network/network_titan.nix
blob: 06b34dcd059391c1229b2e63015455488292ee94 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
{ config, pkgs, lib, ... }:

{
  imports = [ ./network_common.nix ];

  networking.hostName = "titan";
  networking.wireless.enable = true;
  networking.connman.enable = true;
  networking.wicd.enable = false;
  networking.networkmanager.enable = false;
}