dotfiles/nix/nixos-modules/networking.nix

17 lines
426 B
Nix
Raw Normal View History

{ pkgs, config, lib, ... }:
with lib;
let
cfg = config.magic_rb.networking;
in
{
options.magic_rb.networking = {
networkManager = mkEnableOption "Whether to enable Network Manager, usefull on laptops.";
bluetooth = mkEnableOption "Whether to enable bluetooth.";
};
config = {
networking.networkmanager.enable = mkIf cfg.networkManager true;
hardware.bluetooth.enable = mkIf cfg.bluetooth true;
};
}