grimm-nixos-laptop/common/network/default.nix

25 lines
564 B
Nix
Raw Normal View History

2024-04-10 16:51:28 +02:00
{ pkgs, config, lib, ... }:
let
2024-03-24 16:59:47 +01:00
cfg = config.grimmShared;
2024-04-10 16:51:28 +02:00
in
{
config = with cfg; lib.mkIf (enable && network) {
networking.networkmanager.enable = true;
networking.useDHCP = lib.mkDefault true;
2024-03-24 16:59:47 +01:00
hardware.bluetooth.enable = lib.mkDefault laptop_hardware.enable;
2024-04-10 16:51:28 +02:00
environment.systemPackages = with pkgs; [
wireguard-tools
];
};
imports = [ ./bluetooth.nix ];
options.grimmShared.network = with lib; mkOption {
type = types.bool;
default = false;
description = "Enables network manager, wifi and bluetooth";
};
2024-03-24 16:59:47 +01:00
}