dotfiles/nix/nixos-modules/networking.nix
Magic_RB d3e46e5413
Complete module rework
Signed-off-by: Magic_RB <magic_rb@redalder.org>
2021-08-19 18:24:36 +02:00

17 lines
426 B
Nix

{ 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;
};
}